PHP Development
 
Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
User Name:
Password:
Remember me

The Shed is going Social! Join us on FaceBook and Twitter and chime in on the conversation.

Go Back   Dev Shed ForumsProgramming LanguagesPHP Development

Reply
Add This Thread To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Thread Tools Search this Thread Rate Thread Display Modes
 
Unread Dev Shed Forums Sponsor:
  #1  
Old June 6th, 2000, 04:19 AM
hazze hazze is offline
Junior Member
Dev Shed Newbie (0 - 499 posts)
 
Join Date: May 2000
Posts: 5 hazze User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
I would like to get some help with checking if a form is empty.
If the form is empty something like "sorry try again" should be printed.
if it not empty then pass it on to searchprod.php3

echo "<FORM METHOD=POST ACTION="searchprod.php3 ">n";
echo "<INPUT TYPE=TEXT NAME=name VALUE="">n"; echo "
<input type=SUBMIT name=SUBMIT value=search>

regards
Hazze

Reply With Quote
  #2  
Old June 6th, 2000, 04:48 AM
boo boo is offline
Junior Member
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Jun 2000
Posts: 7 boo User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
hazze,

if (!($name)) {
header("Location: <A HREF="http://somewhere.com"0);" TARGET=_blank>http://somewhere.com"0);</A>
exit;
}

Reply With Quote
  #3  
Old June 6th, 2000, 06:31 AM
firepages's Avatar
firepages firepages is offline
Contributing User
Dev Shed Novice (500 - 999 posts)
 
Join Date: Feb 2000
Location: Perth West Australia
Posts: 757 firepages User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 4 h 18 m 32 sec
Reputation Power: 14
But if you use javascript it is faster because you do not have to refresh the page.

function valid(){
if(document.cfone.Cname.value=="") {alert("empty field");return false;}
}
would be used with
<form onsubmit="return cvalid()" name="cfone" action=.....etc>
<input type=text name=Cname></form>

or if you are using divs & netscape you can chuck in a bit of PHP snifing - cos this is the PHP section innit'.

if(<?php if(!ereg( "MSIE", $HTTP_USER_AGENT)){ echo "document.NAMEofDIV.";}?>document.cfone.Cname.value=="") {alert("Please enter your name");return false;}

(adds the path to the div for netscape as it has dodgy eyesight)

Simon

------------------
Simon Wheeler
FirePages -DHTML/PHP/MySQL

Reply With Quote
Reply

Viewing: Dev Shed ForumsProgramming LanguagesPHP Development > empty form check

Developer Shed Advertisers and Affiliates



Thread Tools  Search this Thread 
Search this Thread:

Advanced Search
Display Modes  Rate This Thread 
Rate This Thread:


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
View Your Warnings | New Posts | Latest News | Latest Threads | Shoutbox
Forum Jump

Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
  
 


Powered by: vBulletin Version 3.0.5
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.

© 2003-2013 by Developer Shed. All rights reserved. DS Cluster - Follow our Sitemap