Likes Received By JAY6390
-
Istvan liked JAY6390's post in the thread Regular expressions help needed.
Yes they have the same syntax (with extra arguments optional in preg_match that you wont need for your example). You will need to add a...
Sep 29, 2008 -
Masterful liked JAY6390's post in the thread How Can I Provide the Option for Visitors to Send My Content Via E-mail?.
I'd say the best way would be to have an email form on a separate page, and to send the id to that page, so sendform.php is the form...
Sep 27, 2008 -
schlogo liked JAY6390's post in the thread what s wrong with this piece of code?.
are all of these set correctly? $dbhost = 'localhost'; $dbuser = 'user'; $dbpass = 'password'; $dbbase = 'database'; do you have...
Sep 27, 2008 -
sg552 liked JAY6390's post in the thread Create MySQL table.
CREATE TABLE `downloads` ( `id` int(11) auto_increment, `ip` varchar(15) NOT NULL, `category` varchar(30) NOT NULL, `time`...
Sep 10, 2008 -
rymdoll liked JAY6390's post in the thread Help me code this please.
oh i see. well the easiest way is to send the URL via a simple GET statement in your script with the $_SERVER['HTTP_HOST'] using...
Sep 7, 2008 -
matthewrobertbell liked JAY6390's post in the thread Another preg match all.
It means that a . will match all characters, but also will match new lines. Without it, it will not match a new line character as well...
Sep 7, 2008 -
hexadesigns liked JAY6390's post in the thread How do I know which country my visitor is from?.
What about something like this http://www.hotscripts.com/Detailed/54660.html In fact, I think what you would be better using is...
Sep 7, 2008 -
goscript liked JAY6390's post in the thread Another preg match all.
function findinside($tag, $string) { $pattern = '/<!-- '.preg_quote($tag).' -->(.*?)<!-- \/ '.preg_quote($tag).' -->/si';...
Sep 7, 2008 -
rudeturk liked JAY6390's post in the thread How do i check if file is a divx file using php *Possibly Curl*.
Well this code works fine... $f = fopen('http://www.jhepple.com/support/SampleMovies/AVI_DivX.avi','r') or die('UNABLE TO OPEN STREAM');...
Aug 31, 2008 -
amandeepmail liked JAY6390's post in the thread Php Misconfiguration Please help.
you CANNOT use a URL to include a php file. change the include in the main.php so it is include...
Aug 31, 2008 -
risoknop liked JAY6390's post in the thread MySQLi INSERT INTO problem.
well i suggest you make the query its own variable and echo it before running the query so you can debug and see if there is anything...
Aug 30, 2008