Re: [PHP-DB] Stuck on basic concept, how to .. here's how

2004-03-20 Thread dogu
John, Thanks, you just saved me a whole bunch of time! That's too bad. I'm guessing that the process of re-establishing a resource isn't too intensive so it's not a choke point for any application. It's interesting to see how different languages attack similar problems Have a great

[PHP-DB] Insert an image in a Mysql table

2004-03-20 Thread charalambos nicolaou
Hi, I have created a MySQL table with a blob field and I don’t know how to insert an image to it. Help me please because I am going crazy. Thank you, in advance _ STOP MORE SPAM with the new MSN 8 and get 2 months FREE*

[PHP-DB] Re: Re: Re: SQL Server Query Failed

2004-03-20 Thread david
Bob: I shall experiment with option #3 (replacing php_mssql.dll with php_odbtp_mssql.dll). This will take a couple of days (I want to test it all out...sigh...testing...) and then slip it into production. I will report back on the results. On the Single Sign On... I am happy to talk about (and

Re: [PHP-DB] Re: Re: Re: SQL Server Query Failed

2004-03-20 Thread Robert Twitty
OK, let me know if you needed any assistance. BTW, are you using mssql_init() to call stored procedures? -- bob On Sat, 20 Mar 2004, david wrote: Bob: I shall experiment with option #3 (replacing php_mssql.dll with php_odbtp_mssql.dll). This will take a couple of days (I want to test it all

Re: [PHP-DB] Insert an image in a Mysql table

2004-03-20 Thread Filip de Waard
On Mar 20, 2004, at 3:11 PM, charalambos nicolaou wrote: Hi, I have created a MySQL table with a blob field and I dont know how to insert an image to it. Help me please because I am going crazy. Use your filesystem instead, databases might be capable of storing binary data but they are not

[PHP-DB] Problem, please help!

2004-03-20 Thread JeRRy
Hi, I have not used this site in a while and have a problem. I can't get anything to save to the database. :( Not sure what is wrong, need a fix fast as the site needs to be active in a few days by the latest so hopefully I can get help in that time. The code is a bit messy I know but here

Re: [PHP-DB] Re: Re: Re: SQL Server Query Failed

2004-03-20 Thread JeRRy
Might be an idea to delete the response deeper then the recently replied. As all this is archieved there is no use re-posting it. Sure keep the latest reply but keeping anything more makes these emails quite legnthy. Just a suggestion for you all. Cheers! J Find local movie times and

Re: [PHP-DB] Problem, please help!

2004-03-20 Thread Filip de Waard
On Mar 21, 2004, at 3:44 AM, JeRRy wrote: Hi, I have not used this site in a while and have a problem. I can't get anything to save to the database. :( Not sure what is wrong, need a fix fast as the site needs to be active in a few days by the latest so hopefully I can get help in that time.

Re: [PHP-DB] Problem, please help!

2004-03-20 Thread JeRRy
snip $sql = UPDATE round1 SET game1='$game1' , game2='$game2' , game3='$game3' , game4='$game4' , game5='$game5' , game6='$game6' , game7='$game7' , game8='$game8' , misc='y' WHERE username= \$sidarray[0]\; This only updates an existing record, where the username is equal to

Re: [PHP-DB] Problem, please help!

2004-03-20 Thread php
it looks like the use of double and single quotes could be at fault try writing it like $sql = UPDATE round1 SET game1=' . $game1 . ', game2=' . $game2 . ', game3=' . $game3 . ', game4=' . $game4 . ', game5=' . $game2 . ',