Current location: Hot Scripts Forums » Programming Languages » PHP » Problems with a query form/error reporting


Problems with a query form/error reporting

Reply
  #1 (permalink)  
Old 03-03-10, 10:39 PM
Razz181 Razz181 is offline
Newbie Coder
 
Join Date: Feb 2010
Posts: 6
Thanks: 0
Thanked 0 Times in 0 Posts
Problems with a query form/error reporting

I'm having problems with error reporting on a query form on our website.
Everything is working correctly except that if they miss a mandatory field, the error reporting kicks but when the error message displays, it's right at the bottom of the form.
I have tried moving that section of the php script but that doesn't work correctly.
Here is the php code for the error coding.


PHP Code:

<?php

   
} else {
      
error_reporting(0);
      
$errors = array();

      
$page $_SERVER['HTTP_HOST'].$_SERVER['PHP_SELF'];
      if (!
ereg($page$_SERVER['HTTP_REFERER']))
         
$errors[] = "Invalid referer";

      if (!
$_POST['Name'])
         
$errors[] = "Your name is required";
      if (!
$_POST['Email'])
         
$errors[] = " An Email address is required";
      if (!
$_POST['Address'])
         
$errors[] = "An Address is required";
      if (!
$_POST['Phone'])
         
$errors[] = "Your Phone number is required";     
     
      if (
count($errors)>0) {
         foreach(
$errors as $err)
            echo 
"$err<br>\n";
         echo 
"<br>Please use your browser's Back button to fix.";
      } else
?>

I left out the rest cause there was no need for it here
What I am trying to do is either move the error message up (so they don't need to scroll down to see it or have a popup with what fields they left out.

Hope someone can help
Reply With Quote
  #2 (permalink)  
Old 03-04-10, 05:39 PM
Jcbones Jcbones is offline
Aspiring Coder
 
Join Date: Mar 2009
Location: North Carolina, USA
Posts: 516
Thanks: 5
Thanked 47 Times in 44 Posts
Unfortunately, we will need to see the form, along with the code to help you "move" the output. No other way around it. I know what has to be moved, and I can tell you. If your script is not laid out like I think it should be, then you're just going to be massively confused. Along with possibly causing yourself more headache than is worthwhile. When just a simple posting of the entire script (minus any passwords, or usernames) would sort this problem quickly, efficiently, and without the normal hum,drum of us guessing where the script lies withing the boundaries of the php opening and closing tags.

If you would like to skip the above paragraph, here is the short form.
Quote:
I left out the rest cause there was no need for it here
Quite the opposite, if you cannot get the output where you want it, and you can see the whole script, then how are we suppose to put the output correctly for you with only a few lines.
Reply With Quote
  #3 (permalink)  
Old 03-04-10, 08:37 PM
wirehopper's Avatar
wirehopper wirehopper is offline
-
 
Join Date: Feb 2006
Posts: 2,515
Thanks: 20
Thanked 109 Times in 106 Posts
Instead of echoing out the message, build it into a string, like so:

PHP Code:

$error_messages='';

if (
count($errors)>0)
  
$error_messages=implode('<br />',$errors)."<br />Please use your browser's Back button to fix."
Then, echo out $error_messages where you want them displayed:

PHP Code:

if ($error_messages != '')

  echo 
'<div class="errors">'.$error_messages.'</div>'
Reply With Quote
  #4 (permalink)  
Old 03-04-10, 09:25 PM
Razz181 Razz181 is offline
Newbie Coder
 
Join Date: Feb 2010
Posts: 6
Thanks: 0
Thanked 0 Times in 0 Posts
Thanks for the reply mate, sorry about that part of leaving out the rest, not needed...still learning php and as requested here's the full code.

PHP Code:

<?php

   
if ($_SERVER['REQUEST_METHOD'] != 'POST'){
      
$me $_SERVER['PHP_SELF'];
?>
   <form name="form1" method="post" action="<?=$me?>">
   <table border="0" align="center" cellpadding="5" cellspacing="0">
      <tr>
         <td align="right" valign="middle"><div align="left" class="style32">Name:</div></td>
         <td width="265"><input name="Name" type="text" class="style18" size="40">
         </td>
         <td width="27">&nbsp;</td>
         <td width="36">&nbsp;</td>
      </tr>
      <tr>
         <td align="right" valign="middle"><div align="left" class="style32">Company:</div></td>
         <td width="265"><input name="Company" type="text" class="style18" size="40">
         </td>
      </tr>
      <tr>
         <td align="right" valign="middle"><div align="left" class="style32">Email :</div></td>
           <td width="265"><input name="Email" type="text" class="style18" size="40">
         </td>
      </tr>
      <tr>
         <td align="right" valign="middle"><div align="left" class="style32">Address:</div></td>
           <td width="265"><input name="Address" type="text" class="style18" size="40">
         </td>
      </tr>
      <tr>
         <td align="right" valign="middle"><div align="left" class="style32">Suburb/Postcode:</div></td>
           <td width="265"><input name="Suburb" type="text" class="style18" size="40">
         </td>
      </tr>
      <tr>
         <td align="right" valign="top"><div align="left" class="style32">Phone/Mobile:</div></td>
           <td width="265"><input name="Phone" type="text" class="style18" size="40">
         </td>
      </tr>
      <tr>
         <td align="right" valign="top"><div align="left" class="style32"><font face="Verdana" size="2">just a question </font></div></td>
         <td><p class="style32">
             <input type="radio" name="test" checked value="Yes">*Yes<br>
             <input type="radio" name="test" value="No"> No</p>
           <p class="style33 style34">*If Yes, please specify in the comment box below </p></td>
      </tr>
      <tr>
        <td align="right" valign="top"><div align="left" class="style32"><font face="Verdana" size="2">another question</font></div></td>
        <td><span class="style32">
          <input name="test01" type="checkbox" 
            id="test01" value="test01">test01<br>
          <input name="test02" type="checkbox" id="test02" value="test02"> test02<br>
          <input name="test03" type="checkbox" id="test03" value="test03">test03<br>
          <input name="test04" type="checkbox" id="test04" value="test04">test04<br>
          <input name="test05" type="checkbox" id="test05" value="test05">test05<br>
          <input name="test06" type="checkbox" id="test06" value="test06">test06<br>
          <input name="test07" type="checkbox" id="test07" value="test07">test07</span></td>
      </tr>
      <tr>
        <td align="right" valign="top"><div align="left" class="style32">Any other comments:</div></td>
        <td rowspan="2"><div>
             <textarea name="Comments" cols="25" rows="7" class="style18"></textarea>
         </div></td>
        <td>&nbsp;</td>
        <td>&nbsp;</td>
      </tr>
      <tr>
        <td align="right" valign="top"><div align="left" class="style32"></div></td>
          <td>
            <span class="style32">            </span></td>
        <td>&nbsp;</td>
        <td>&nbsp;</td>
      </tr>
      <tr>
        <td align="right" valign="top"><div align="left" class="style32"></div></td>
        <td><span class="style32">          <br></span></td>
        <td>&nbsp;</td>
        <td>&nbsp;</td>
      </tr>
      <tr>
        <td><div align="left"><span class="style32"><span class="style32"><span class="style32"></span></span></span></div></td>
        <td><span class="style32">
          <input name="Submit" type="submit" class="style18" value="Send"></span></td>
        <td>&nbsp;</td>
      </tr>
      <tr>
        <td><div align="left"><span class="style32"><span class="style32"><span class="style32"></span></span></span></div></td>
        <td>&nbsp;</td>
        <td>&nbsp;</td>
        <td>&nbsp;</td>
      </tr>
      <tr>
        <td>&nbsp;</td>
        <td><span class="style32"></span></td>
        <td>&nbsp;</td>
        <td>&nbsp;</td>
      </tr>
      <tr>
        <td>&nbsp;</td>
        <td><span class="style32"></span></td>
        <td>&nbsp;</td>
        <td>&nbsp;</td>
      </tr>
   </table>
</form>
    
<?php
   
} else {
      
error_reporting(0);
      
$errors = array();

      
$page $_SERVER['HTTP_HOST'].$_SERVER['PHP_SELF'];
      if (!
ereg($page$_SERVER['HTTP_REFERER']))
         
$errors[] = "Invalid referer";

      
// check to see if a name was entered
      
if (!$_POST['Name'])
         
$errors[] = "Your name is required";
      if (!
$_POST['Email'])
         
$errors[] = " An Email address is required";
      if (!
$_POST['Address'])
         
$errors[] = "An Address is required";
      if (!
$_POST['Phone'])
         
$errors[] = "Your Phone number is required";     
      
      if (
count($errors)>0) {
         foreach(
$errors as $err)
            echo 
"$err<br>\n";
         echo 
"<br>Please use your browser's Back button to fix.";
      } else {
          
         
$recipient 'mymail@whoknows.com';
         
$subject "Information Request";
         
$from stripslashes($_POST['Name']);
         
$msg "Message sent by $from\n";
         
$msg.="\nCompany: ".$_POST['Company'];
         
$msg.="\nEmail: ".$_POST['Email'];
         
$msg.="\nAddress: ".$_POST['Address'];
         
$msg.="\nSuburb: ".$_POST['Suburb'];
         
$msg.="\nPhone: ".$_POST['Phone'];
     
$msg.="\nSome text: ".$_POST['test'];
         
$test01=($_POST['test01'])?"test01: Yes":"test01: No";
         
$test02=($_POST['test02'])?"test02: Yes":"test02: No";
         
$test03=($_POST['test03'])?"test03: Yes":"test03: No";
         
$test04=($_POST['test04'])?"test04: Yes":"test04: No";
     
$test05=($_POST['test05'])?"test05: Yes":"test05: No";
     
$test06=($_POST['test06'])?"test06: Yes":"test06: No";
         
$msg.="\n$test01\n$test02\n$test03\n$test04\n$test05\n$test06";
         
$msg.="\nAny other comments: ".stripslashes($_POST['Comments'])."\n";

         if (
mail($recipient,$subject,$msg)){
            echo 
"<p>Thank you for you query!</p>";
            echo 
nl2br($msg);
         } else
            echo 
"An unknown error occurred.";
      }
   }
?>
Hope you or someone can help me
Thanks
Reply With Quote
  #5 (permalink)  
Old 03-04-10, 09:58 PM
Razz181 Razz181 is offline
Newbie Coder
 
Join Date: Feb 2010
Posts: 6
Thanks: 0
Thanked 0 Times in 0 Posts
With your solution wirehopper, I keep getting an error message

Quote:
Parse error: syntax error, unexpected T_ELSE in /website/www/contact_us.php on line 305
and this is line 304,305,306

Quote:
$recipient = 'myemail@whereever.com';
$subject = "Information Request";
$from = stripslashes($_POST['Name']);
Reply With Quote
  #6 (permalink)  
Old 03-04-10, 11:51 PM
wirehopper's Avatar
wirehopper wirehopper is offline
-
 
Join Date: Feb 2006
Posts: 2,515
Thanks: 20
Thanked 109 Times in 106 Posts
Check the braces ({}) - there's a mismatch.

You have to post more code, your last post doesn't give enough information.
Reply With Quote
  #7 (permalink)  
Old 03-05-10, 04:57 PM
Jcbones Jcbones is offline
Aspiring Coder
 
Join Date: Mar 2009
Location: North Carolina, USA
Posts: 516
Thanks: 5
Thanked 47 Times in 44 Posts
PHP Code:

<?php
    $me 
$_SERVER['PHP_SELF'];
   if (
$_SERVER['REQUEST_METHOD'] == 'POST'){      
       
error_reporting(0);
      
$errors = array();

      
$page $_SERVER['HTTP_HOST'].$_SERVER['PHP_SELF'];
      if (!
ereg($page$_SERVER['HTTP_REFERER']))
         
$errors[] = "Invalid referer";

      
// check to see if a name was entered
      
if (!$_POST['Name'])
         
$errors[] = "Your name is required";
      if (!
$_POST['Email'])
         
$errors[] = " An Email address is required";
      if (!
$_POST['Address'])
         
$errors[] = "An Address is required";
      if (!
$_POST['Phone'])
         
$errors[] = "Your Phone number is required";     
      
     
$error_messages NULL;
    if(
count($errors)>0) { 
        
$error_messages=implode('<br />',$errors)."<br />Please use your browser's Back button to fix."
      } else {
          
         
$recipient 'mymail@whoknows.com';
         
$subject "Information Request";
         
$from stripslashes($_POST['Name']);
         
$msg "Message sent by $from\n";
         
$msg.="\nCompany: ".$_POST['Company'];
         
$msg.="\nEmail: ".$_POST['Email'];
         
$msg.="\nAddress: ".$_POST['Address'];
         
$msg.="\nSuburb: ".$_POST['Suburb'];
         
$msg.="\nPhone: ".$_POST['Phone'];
     
$msg.="\nSome text: ".$_POST['test'];
         
$test01=($_POST['test01'])?"test01: Yes":"test01: No";
         
$test02=($_POST['test02'])?"test02: Yes":"test02: No";
         
$test03=($_POST['test03'])?"test03: Yes":"test03: No";
         
$test04=($_POST['test04'])?"test04: Yes":"test04: No";
     
$test05=($_POST['test05'])?"test05: Yes":"test05: No";
     
$test06=($_POST['test06'])?"test06: Yes":"test06: No";
         
$msg.="\n$test01\n$test02\n$test03\n$test04\n$test05\n$test06";
         
$msg.="\nAny other comments: ".stripslashes($_POST['Comments'])."\n";

         if (
mail($recipient,$subject,$msg)){
            
$error_messages "<p>Thank you for you query!</p>";
            
$error_messages .= nl2br($msg);
         } else
            
$error_messages "An unknown error occurred.";
      }
   } 
   
//$error_messages now holds any output message, so just echo it where you want the messages to show up.
   //Always do your processing first, then the output, that way you can manipulate how you want things 
   //to show up.  The form will now show up if the process fails or goes through.  If you want, you can
   //add the $_POST back to the form on the event that the process fails, this way the individual will 
   //not have to hit their back button to get the form, AND it is already filled out for them.  This will
   //make for a happier user base.
    
?>
   <form name="form1" method="post" action="<?php echo $me?>">
   <?php echo $error_messages?>
   <table border="0" align="center" cellpadding="5" cellspacing="0">
      <tr>
         <td align="right" valign="middle"><div align="left" class="style32">Name:</div></td>
         <td width="265"><input name="Name" type="text" class="style18" size="40">
         </td>
         <td width="27">&nbsp;</td>
         <td width="36">&nbsp;</td>
      </tr>
      <tr>
         <td align="right" valign="middle"><div align="left" class="style32">Company:</div></td>
         <td width="265"><input name="Company" type="text" class="style18" size="40">
         </td>
      </tr>
      <tr>
         <td align="right" valign="middle"><div align="left" class="style32">Email :</div></td>
           <td width="265"><input name="Email" type="text" class="style18" size="40">
         </td>
      </tr>
      <tr>
         <td align="right" valign="middle"><div align="left" class="style32">Address:</div></td>
           <td width="265"><input name="Address" type="text" class="style18" size="40">
         </td>
      </tr>
      <tr>
         <td align="right" valign="middle"><div align="left" class="style32">Suburb/Postcode:</div></td>
           <td width="265"><input name="Suburb" type="text" class="style18" size="40">
         </td>
      </tr>
      <tr>
         <td align="right" valign="top"><div align="left" class="style32">Phone/Mobile:</div></td>
           <td width="265"><input name="Phone" type="text" class="style18" size="40">
         </td>
      </tr>
      <tr>
         <td align="right" valign="top"><div align="left" class="style32"><font face="Verdana" size="2">just a question </font></div></td>
         <td><p class="style32">
             <input type="radio" name="test" checked value="Yes">*Yes<br>
             <input type="radio" name="test" value="No"> No</p>
           <p class="style33 style34">*If Yes, please specify in the comment box below </p></td>
      </tr>
      <tr>
        <td align="right" valign="top"><div align="left" class="style32"><font face="Verdana" size="2">another question</font></div></td>
        <td><span class="style32">
          <input name="test01" type="checkbox" 
            id="test01" value="test01">test01<br>
          <input name="test02" type="checkbox" id="test02" value="test02"> test02<br>
          <input name="test03" type="checkbox" id="test03" value="test03">test03<br>
          <input name="test04" type="checkbox" id="test04" value="test04">test04<br>
          <input name="test05" type="checkbox" id="test05" value="test05">test05<br>
          <input name="test06" type="checkbox" id="test06" value="test06">test06<br>
          <input name="test07" type="checkbox" id="test07" value="test07">test07</span></td>
      </tr>
      <tr>
        <td align="right" valign="top"><div align="left" class="style32">Any other comments:</div></td>
        <td rowspan="2"><div>
             <textarea name="Comments" cols="25" rows="7" class="style18"></textarea>
         </div></td>
        <td>&nbsp;</td>
        <td>&nbsp;</td>
      </tr>
      <tr>
        <td align="right" valign="top"><div align="left" class="style32"></div></td>
          <td>
            <span class="style32">            </span></td>
        <td>&nbsp;</td>
        <td>&nbsp;</td>
      </tr>
      <tr>
        <td align="right" valign="top"><div align="left" class="style32"></div></td>
        <td><span class="style32">          <br></span></td>
        <td>&nbsp;</td>
        <td>&nbsp;</td>
      </tr>
      <tr>
        <td><div align="left"><span class="style32"><span class="style32"><span class="style32"></span></span></span></div></td>
        <td><span class="style32">
          <input name="Submit" type="submit" class="style18" value="Send"></span></td>
        <td>&nbsp;</td>
      </tr>
      <tr>
        <td><div align="left"><span class="style32"><span class="style32"><span class="style32"></span></span></span></div></td>
        <td>&nbsp;</td>
        <td>&nbsp;</td>
        <td>&nbsp;</td>
      </tr>
      <tr>
        <td>&nbsp;</td>
        <td><span class="style32"></span></td>
        <td>&nbsp;</td>
        <td>&nbsp;</td>
      </tr>
      <tr>
        <td>&nbsp;</td>
        <td><span class="style32"></span></td>
        <td>&nbsp;</td>
        <td>&nbsp;</td>
      </tr>
   </table>
</form>
Reply With Quote
  #8 (permalink)  
Old 03-22-10, 08:44 PM
Razz181 Razz181 is offline
Newbie Coder
 
Join Date: Feb 2010
Posts: 6
Thanks: 0
Thanked 0 Times in 0 Posts
Quote:
Originally Posted by Jcbones View Post
[php]

//add the $_POST back to the form on the event that the process fails, this way the individual will
//not have to hit their back button to get the form, AND it is already filled out for them. This will
//make for a happier user base.
Sorry I haven't gotten back to say thanks, so thanks for all the help, my only question is how do I add the $_POST, is it like this?

PHP Code:

<form name="form1" method="post" action="<?php echo $me?>">

   <?php echo $error_messages?>
   <?php $_POST?>
   <table border="0" align="center" cellpadding="5" cellspacing="0">
      <tr>
         <td align="right" valign="middle"><div align="left" class="style32">Name:</div></td>
         <td width="265"><input name="Name" type="text" class="style18" size="40">
         </td>
         <td width="27">&nbsp;</td>
         <td width="36">&nbsp;</td>
      </tr>
      <tr>
         <td align="right" valign="middle"><div align="left" class="style32">Company:</div></td>
         <td width="265"><input name="Company" type="text" class="style18" size="40">
         </td>
      </tr>
      <tr>
         <td align="right" valign="middle"><div align="left" class="style32">Email :</div></td>
           <td width="265"><input name="Email" type="text" class="style18" size="40">
         </td>
      </tr>
      <tr>
         <td align="right" valign="middle"><div align="left" class="style32">Address:</div></td>
           <td width="265"><input name="Address" type="text" class="style18" size="40">
         </td>
      </tr>
      <tr>
         <td align="right" valign="middle"><div align="left" class="style32">Suburb/Postcode:</div></td>
           <td width="265"><input name="Suburb" type="text" class="style18" size="40">
         </td>
      </tr>
      <tr>
         <td align="right" valign="top"><div align="left" class="style32">Phone/Mobile:</div></td>
           <td width="265"><input name="Phone" type="text" class="style18" size="40">
         </td>
      </tr>
      <tr>
         <td align="right" valign="top"><div align="left" class="style32"><font face="Verdana" size="2">just a question </font></div></td>
         <td><p class="style32">
             <input type="radio" name="test" checked value="Yes">*Yes<br>
             <input type="radio" name="test" value="No"> No</p>
           <p class="style33 style34">*If Yes, please specify in the comment box below </p></td>
      </tr>
      <tr>
        <td align="right" valign="top"><div align="left" class="style32"><font face="Verdana" size="2">another question</font></div></td>
        <td><span class="style32">
          <input name="test01" type="checkbox" 
            id="test01" value="test01">test01<br>
          <input name="test02" type="checkbox" id="test02" value="test02"> test02<br>
          <input name="test03" type="checkbox" id="test03" value="test03">test03<br>
          <input name="test04" type="checkbox" id="test04" value="test04">test04<br>
          <input name="test05" type="checkbox" id="test05" value="test05">test05<br>
          <input name="test06" type="checkbox" id="test06" value="test06">test06<br>
          <input name="test07" type="checkbox" id="test07" value="test07">test07</span></td>
      </tr>
      <tr>
        <td align="right" valign="top"><div align="left" class="style32">Any other comments:</div></td>
        <td rowspan="2"><div>
             <textarea name="Comments" cols="25" rows="7" class="style18"></textarea>
         </div></td>
        <td>&nbsp;</td>
        <td>&nbsp;</td>
      </tr>
      <tr>
        <td align="right" valign="top"><div align="left" class="style32"></div></td>
          <td>
            <span class="style32">            </span></td>
        <td>&nbsp;</td>
        <td>&nbsp;</td>
      </tr>
      <tr>
        <td align="right" valign="top"><div align="left" class="style32"></div></td>
        <td><span class="style32">          <br></span></td>
        <td>&nbsp;</td>
        <td>&nbsp;</td>
      </tr>
      <tr>
        <td><div align="left"><span class="style32"><span class="style32"><span class="style32"></span></span></span></div></td>
        <td><span class="style32">
          <input name="Submit" type="submit" class="style18" value="Send"></span></td>
        <td>&nbsp;</td>
      </tr>
      <tr>
        <td><div align="left"><span class="style32"><span class="style32"><span class="style32"></span></span></span></div></td>
        <td>&nbsp;</td>
        <td>&nbsp;</td>
        <td>&nbsp;</td>
      </tr>
      <tr>
        <td>&nbsp;</td>
        <td><span class="style32"></span></td>
        <td>&nbsp;</td>
        <td>&nbsp;</td>
      </tr>
      <tr>
        <td>&nbsp;</td>
        <td><span class="style32"></span></td>
        <td>&nbsp;</td>
        <td>&nbsp;</td>
      </tr>
   </table>
</form>
I tried just adding it like that and it didn't work, as you can probably see, I'm quite new to php so thanks for any help
Reply With Quote
  #9 (permalink)  
Old 03-23-10, 06:05 AM
wirehopper's Avatar
wirehopper wirehopper is offline
-
 
Join Date: Feb 2006
Posts: 2,515
Thanks: 20
Thanked 109 Times in 106 Posts
This won't work, but, I think your HTML is okay.

PHP Code:

   <?php $_POST?>

I think what Jcbones meant was this:

PHP Code:

<input name="Name" type="text" class="style18" size="40" value="<?php echo $_POST['Name']; ?>">
That way, the data submitted is already placed in the inputs when the page is redisplayed.
Reply With Quote
  #10 (permalink)  
Old 03-24-10, 11:35 AM
szindagi szindagi is offline
New Member
 
Join Date: Mar 2010
Posts: 1
Thanks: 0
Thanked 0 Times in 0 Posts
HI...................

I've made a form which contains 2 types of account i.e Student and Teacher. I've validated that if the fields remain empty the validation works out and doesnt let the form get submit. I've coded on the Teacher's radio button that when it'll be checked so the COURSE drop down menu should be disabled. But I've a problem that when it gets disable but again validation asks for course selection in Teacher Type Account.. I want that in Teacher Type Account the course validation should run and let the form get submit.....

Can any one help me out...?

Thnx!
Reply With Quote
Reply

Bookmarks


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

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

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
code problem throws error matt001 ASP.NET 0 10-23-05 03:30 AM
Select query problems davidcsi Hot Scripts Forum Questions, Suggestions and Feedback 1 04-21-04 12:27 PM
Declared Functions skipper23 PHP 4 12-17-03 10:06 AM
index page not showing up skipper23 PHP 3 12-15-03 01:10 PM


All times are GMT -5. The time now is 08:11 AM.
vBulletin® Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.