
sean14592
Members-
Posts
157 -
Joined
-
Last visited
Everything posted by sean14592
-
lol, my question was to stop <a, but same thing. I enteed and get back 'Fail!' Sean, btw thanks for helping
-
In $main_desc I enter '<a' and I get fail(false), good but if I enter 'sdsadas' I get Fail
-
I'm using PHP 5
-
Here is my full code: Form http://pastebin.com/m6e3ba10d Process Page http://pastebin.com/m22ec71e Cheers Sean
-
I get fail every time
-
Ok, when i try this i get.... Warning: eregi() [function.eregi]: REG_BADRPT in ******/public_html/pages/oaddprop6.php on line 154 Nope line 154 is.... if (eregi('<a(.*)>', $post)) { Cheers Sean
-
I have tried... if ((strstr($main_desc, "<a")) || (strstr($area_desc, "<a")) || (strstr($getthere_desc, "<a"))){ echo '<br><center>'; echo 'Opps! Looks like we have a problem....<br><br>'; echo '<b>Error: <FONT COLOR="#FF3300"><u>You cannot include links in your any part of your listing unless specifically asked!</u></b></font>'; echo '<br><br><a href="'.$siteurl.'index.php?p=oaddprop5"><img src="'.$siteurl.'style/form/fix_error.gif" width="240" height="40" border="0" /></a>'; exit; } ...sadly didnt work, i used <a> and didn't get any error, I will try other now I have also tried... if ( strpos( $_POST['main_desc'], '<a' ) !== FALSE ){ echo 'Found an <a> tag!'; } ...still dosent work Sean
-
Hi, I need to check a text box if it contains the <a> tag. Any ideas? Sean
-
They may ned to go back if error occures, I have tried doing it with sesions, yet i still get error...here is my code.... step 1 http://pastebin.com/m6d97a25a step 2(checks step1 and shows form for step 2) http://pastebin.com/m459beaf4 Step 3(Checks step3 and show form for step 2(not yet created just copy of step 2)) http://pastebin.com/m226ef49f Thanks a bunch sean
-
ok, done, that works now but instead im getting a error saying: "Invite ID Field Empty!" once I click the go back link. so somewhere down the line its forgetting the post data from the first form, I have tride making it all sessions but yet i still get error. weird! Sean
-
I have a made a form that adds properties to our site, on submit php checks if any errors have occured they can click a button to go back. heres my code: addprop form http://pastebin.com/m4456945d Next page which checks details http://pastebin.com/f1e4d2392 The problem is when they get a error and go back they see a 'Webpage has expired' error in IE or in Firefox they get a popup warning. Cheers Sean
-
Its included in there free host, right? does this mean you can only use it on the free host package and not on my own host? cheers for help sean
-
That what id did lol, could only find one (non trial) site and the links on registration are down. cheers sean
-
any1 know where I can get one free, found one site but links are down. cheer sean
-
so does tht mean I have to buy a ssl certificate? cheers sean
-
I dont know I would have to look into that, never used https. thanks sean
-
On my site I have the following plan to process payments via PayPal My site is a the property rent directoy basicaly and a owner is allowed to add property, so this si the proccess they will take.... 1) Click Add Property 2)They then see a form, complete and click submit -After subited all form data is saved in sessions 3) redirect to PayPal payment gateway 4)They pay and cme back to our site -The site now brings back the sessions and PayPal details(if I can) to enter into database 5)Done! Its realy the main concept of having the sessions saved and then submited once paymen complete, is that secure? cheers sean
-
ok, thank you sooo much for your help, shame this forum dosent have a rank system, oh well if they ever do get one pm me. cheers sean
-
ok, I no longer have tht error but now I have the follwoing error: Cannot send password to your e-mail address Here is my full page code: http://pastebin.com/m28d1f83 Cheers Sean
-
ok, have done but now I get this error.... Fatal error: Cannot instantiate non-existent class: mime_mail in /home/holiday/public_html/pages/oforpasspro.php on line 132 Cheers Sean
-
Hi <img src="http://www.****.com/images/email_header.gif" /> Dear Sean Preston <br>You have requested to reset your password on ****.com. If you did not request this, please ignore it. <b> Your new password is afe2bf87 </b> To login with your new password, please visit the following page: <a href="http://www.****.com/index.php?p=ologin">http://www.********.com/index.php?p=ologin</a> Thank You The H**** Team So, now the new lines are there, but the images and links do appear, so the html is still disabled in the content tag. Cheers Sean
-
jonsjava, when I do wha you aid, I get the email to... <img src="http://www.*****.com/images/email_header.gif" /><br><br>Dear Sean Preston <br>You have requested to reset your password on *****. If you did not request this, please ignore it.<br><br><b> Your new password is 60ecfe02 </b><br><br>To login with your new password, please visit the following page:<br><a href="http://www.*****.com/index.php?p=ologin">http://www.*****.com/index.php?p=ologin</a><br><br>Thank You<br> The *****Team Ummm, so its not seeing the headers as headers, so its showing text not html. The actual from par of the email when eceives has all the ehaders in it, if you get me. basically, the code is deactivating the Content-Type headers Cheers Sean
-
Hi, thanks for elping, I have chaged what you said, bu still dosent work, btw.... $sentmail = mail($to,$from,$subject,$messages,$mailheaders); Is supposed to be.... $sentmail = mail($to,$subject,$messages,$mailheaders); Is that right?, If it is he first one I get errors. I really, really need to fix this, Any help would be very greatful. Cheers, Sean
-
Hi, I'm having a problem with php mail. I can seem to set the 'from' thing, so everytime my email gets sent it currently says"From:[email protected]" when it should say "From Support@********.com". Here is my code: // ---------------- SEND MAIL FORM ---------------- // send e-mail to ... $to=$email_to; // Your subject $subject="******** - Your New Password!"; // From $from ='******** <support@********.com>'; //Message $name = $rows['name']; $messages = "<img src=\"".$emailheaderimage."\" /><br><br>"; $messages.="Dear $name <br>"; $messages.="You have requested to reset your password on ".$sitedomain.". If you did not request this, please ignore it.<br><br>"; $messages.="<b> Your new password is $new_password </b><br><br>"; $messages.="To login with your new password, please visit the following page:<br>"; $messages.="<a href=\"".$siteurl."index.php?p=ologin\">".$siteurl."index.php?p=ologin</a><br><br>"; $messages.="Thank You<br> The ******* Team "; $mailheaders = 'Content-Type: text/html; charset=ISO-8859-1\r\n'; // send email $sentmail = mail($to,$from,$subject,$messages,$mailheaders); } Cheers Sean p.s ******** == My domain
-
FIXED! Thank you everyone for helping me soo much. you guys are the best, once my site is complete im gonna have to donate. Sean