PHP forum
Would you like to react to this message? Create an account in a few clicks or log in to continue.
May 2024
SunMonTueWedThuFriSat
   1234
567891011
12131415161718
19202122232425
262728293031 

Calendar Calendar

Latest topics
» Kabaddi, Kabaddi, Kabaddi, Kabaddi......PHP?
PHP form validation problem? EmptyFri Jul 22, 2011 1:37 pm by shyamsunder

» Thousands of Free PHP Scripts Recommended
PHP form validation problem? EmptyWed May 18, 2011 10:33 am by bizboy12

» PHP form validation problem?
PHP form validation problem? EmptyWed Jan 12, 2011 1:25 pm by simy202

» string wrap
PHP form validation problem? EmptySat Aug 02, 2008 2:06 pm by scvinodkumar

» retrieving current date rows
PHP form validation problem? EmptyTue Jul 15, 2008 3:25 am by scvinodkumar

» number in words
PHP form validation problem? EmptyTue Apr 29, 2008 3:10 pm by scvinodkumar

» Simple PHP Form Field Generator
PHP form validation problem? EmptyFri Apr 25, 2008 12:28 pm by scvinodkumar

» PHP password generator
PHP form validation problem? EmptyFri Apr 18, 2008 7:24 pm by scvinodkumar

» PHP Script to Extract Email Address from any text
PHP form validation problem? EmptyFri Apr 18, 2008 7:18 pm by scvinodkumar

Search
 
 

Display results as :
 


Rechercher Advanced Search

Affiliates
free forum
 


Navigation
 Portal
 Index
 Memberlist
 Profile
 FAQ
 Search

PHP form validation problem?

Go down

PHP form validation problem? Empty PHP form validation problem?

Post  simy202 Wed Jan 12, 2011 1:25 pm

I'm making one form using php, so validation is using PHP too,
I m posting the value in the same form and then trying to insert into mysql..look below.. I encountered the problem
--------------------------------------…
Code:
<form method="post" enctype="multipart/form-data" name="form1" id="form1">

Name : <input type="text" name="t1" id="t1" />
Contact : <input type="text" name="t2" id="t2" />

<span class="err" ></span>

<input type="submit" name="s1" id="s1" /> 
</form>

<?php
if(isset($_POST["s1"]))
{
if($_POST["t1"] == "")
{
$err = "Enter Your name";

echo "<script language=javascript>" . "alert('Enter your name')" . "</script>";
echo "<script language=javascript>" . "document.getElementById('t1').focus();" . "</script>";
}
else if($_POST["t2"] == "")
{
$err = "Enter Your Contact Number";
echo "<script language=javascript>" . "alert('Enter your contact number')" . "</script>";
}

echo "<span style=color:red> $err</span>";
}

?>
--------------------------------------…

now what problem m facing here when i click on the "Submit" button i m getting the Error messages but the page is redirecting the i have to write all values all over again ..

suppose i have already wrriten a "NAME(t1)" but didnt write a CONTACT NUMBER(t2) then after m clicking on the SUBMIT button when i do this my page redirecting, m getting the second error "write your contact number" but i have to write all the values like NAME etc all over again ..

so my page is returning to true .. not false .

do you know how to set "return false" through php just like we do using javascript .. i cant use javascript for this .. have to use php in this .. plz help me ..

thank you ..

simy202

Posts : 1
Join date : 2011-01-12
Age : 38
Location : United States

http://www.phpkode.com

Back to top Go down

Back to top

- Similar topics

 
Permissions in this forum:
You cannot reply to topics in this forum