Need Help. I had PHPBB3 ver 3.0.8 Then i made MOD implement. Forum_sort_order from phpbb. com /community/ viewtopic.php?t=587765 Then any new threads did not appear in the forum only it showed when i sort it by Descending – i thought it was some bug Immediatelly i did upgrade the Forum to 3.0.9 and now it [...]
Pretty new to PHP – I have a script and the error msg. keeps giving me a message of "Parse error: syntax error, unexpected ‘,’ in /home/content/b/i/g/bigcat1967/html/registernext.php on line 9" Here is the script: <?php include(‘connectionfile.php’); $test=$_post(username); if (!eregi("([^A-Za-z0-9]"),$test)) { } else { header("Location:invalidname.htm"); } I know – probably something stupid that I’m missing. thx [...]
I am using Prestashop for my store. www.meccabooks.com However I am having a issue with my cart which is mentioned below. When I add a item in the cart it shows up on the cart, when I clink on the cart button instead of Checkout, the page goes blank. If I click on the checkout, [...]
Hi all I am trying (11 days in …honest!!) to look at using a CMS and to cut a very long story short I chose Drupal. I installed the most recent version, 7 something onto my xp pro machine using IIS 5.something with my lovely new (working) PHP 5.3. The install went fine.. there was [...]
Hi Everyone, Do any of you know how to best display en error message when validating user input (Server-side). I know that you can use a message box when working on the client-side, but it doesn’t work when sending data to server. I understand that I have to use PostBack, but how do you display [...]
Hi Guys, Every time I try to purchase a service via ‘MarketPlace’ I keep getting an error stating: "Unable to complete order". Anyone experienced this before? If so, how do I rectify this? Thanks in advance. View full post on Tycoon Talk
I bought an old expired domain for the first time. Now the problem is google webmaster is showing me certain pages as 404 error which were on the old site for some pages which were on root i used ErrorDocument 404 /404notfound.php and they worked fine but my problem how to redirect pages like /get_damnit/DAMNIT.html [...]
Hey i want to make a web form for my web i am trying this code but it do nothing. i cant get where is error in this script please help me. PHP Code: <html><body bgcolor=”silver” text=”blue” link=”black”> <form action=”" method=”post”> <table align=”center”> <tbody align=”left” valign=”top”> <tr> <td height=”100″></td> </tr> <tr> <td> Name:* </td> <td> <input type=”text” name=”Name” value=”" maxlength=”100″ /> </td> </tr> <tr> <td> E-Mail:* </td> <td> <input type=”text” name=”E_Mail” value=”" maxlength=”100″ /> </td> </tr> <tr> <td> Phone no:* </td> <td> <input type=”text” name=”Ph” value=”" maxlength=”100″ /> </td> </tr> <tr> <td> Ga: </td> <td> <input type=”text” name=”Ga” value=”" maxlength=”100″ /> </td> </tr> <tr> <td> Comments:* </td> <td> <textarea rows=”3″ cols=”20″ name=”Comments”></textarea> </td> </tr> <tr> <td> * Required </td> </tr> </table> <table align=”center”> <tr> <td> <input type=”submit” value=”Submit” alt=”submit” name=”submit” /> </td> <td> <input type=”reset” /> </td> </tr> </table></form> </body></html><?php if (isset($POST[”submit”])) { include(“data.php”); $Name=$_POST[’Name’]; $E_Mail=$_POST[’E_Mail’]; $Ph=$_POST[’Ph’]; $Ga=$_POST[’Ga’]; $Comments=$_POST[’Comments’]; if ($Name == ” || $E_Mail == ” || $Ph == ” || $Comments == ”) { $error = ’true’; echo ”ERROR: Please fill required fields!”; } else { $error = ’false’; } if(preg_match(“/^[+]{1}[0-9]{12}$/”, $Ph)) { $error = ’true’; echo ”The Phone number is not valid.”; } else { $error = ’false’; } if(preg_match(“/^([a-zA-Z0-9])+([a-zA-Z0-9\._-])*@([a-zA-Z0-9_-])+([a-zA-Z0-9\._-]+)+$/”, $E_Mail)) { $error = ’true’; echo ”Your Email is not Valid.”; } else { $error = ’false’; } if($error == ”true”) { echo ”There is an error”; } else { mysql_query(“INSERT INTO `gmifamil_form`.`gmi` (Name, EMail, Ph, Ga, Comments) VALUES (‘$Name’, ’$E_Mail’, ’$Ph’, ’$Ga’, ’$Comments’)”) or die(mysql_error()); header(“Location: th.htm”); } } ?> View full post on Tycoon Talk
hello , i have a site , which i have word press installed but from two days it is giving this mesege 500 Internal Server Error i search around , but tired of geting wrong methods help plzz View full post on Tycoon Talk
i think this is the suitable forum for this post, if not please move it to the right forum. i am having a very wierd problem in a website that i am working on. it has got a slideshow which is working fine in firefox, opera and internet explorer, but it’s not working in chrome. [...]