If you're still looking for a version of Moodalbox that works with the latest Mootools, I did exactly that a while ago:...
Try inserting it as DATE_ADD(NOW(), INTERVAL 5 HOUR) Edit: If you're wondering why it didn't work when you added 18000, it's because when you...
Try this $strDate = date("d/m/y h:i:s", strtotime("$date GMT")); strtotime() uses the default timezone, so telling it that your database time...
If you mean the PHP date function, then yes, but you can convert the MySQL date to PHP date using strtotime(), e.g. if you've retrieved the date...
You're putting the message content into $content; $content = "Hello {$_REQUEST['name']} , \n\nThank you for your case inquiry. "; $content...
Along the lines of what mikeloring suggested - strip the content out of the old files and just replace it with <?php header("HTTP/1.1 301 Moved...
I picked up the basics php in about a day (had no choice, was dropped in at the deep end when my new employer's mail script fell apart) but I've...
I'm not sure if that's definitely his intention, but it makes sense to me - if it's some sort of CMS then he could search title and content in one...
There's actually a Firefox extension for Firebug that analyses a page and suggest ways of speeding it up. http://developer.yahoo.com/yslow/
Except he's comparing a string to every field in the table, so that'd be SELECT * FROM myTable WHERE myColumn1 REGEXP '^Digital...
Try replacing the first line with this and let me know what happens. <? error_reporting(E_ALL); ini_set('display_errors','1'); session_start();
Is it stored as & or & ? Also, you'll always skip the first result using this: $row = mysql_fetch_assoc($result); while ($row =...
The " " are required otherwise it's not valid HTML. If you were to do that using method 2 you'd have to use echo "<body> <div...
<?PHP if (isset($_REQUEST['action']) && $_REQUEST['action']=='Send') { if (isset($_REQUEST['email'], $_REQUEST['name']) &&...
Not quite, you don't set the $_REQUEST values, just retrieve them, e.g. $msg = $_REQUEST['content']; Also, you can't reference arrays in strings...
Separate names with a comma.