On Tue, Feb 24, 2009 at 14:55, Terion Miller <webdev.ter...@gmail.com> wrote:
>
> And yes yes I know escape my strings ...I'll go back and do that when the
> stupid insert is actually working...

    I'd suggest that it's probably the reason your insert isn't
working.  Add your mysql_real_escape_string() stuff there, and then
change your error bit to:

<?php
    // ....
    mysql_query($query) or die("SQL: ".$query."<br />\nError: ".mysql_error());
    // ....
?>

-- 
</Daniel P. Brown>
daniel.br...@parasane.net || danbr...@php.net
http://www.parasane.net/ || http://www.pilotpig.net/
Unadvertised dedicated server deals, too low to print - email me to find out!

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to