[PHP-DB] Connecting to MS Access Database using PHP via ODBC.

2007-03-15 Thread ABCOM Support
Hello, Im using PHP to connect to a Microsoft Access database which is not stored on the machine where IIS is installed. It's located on a different file server on the network. I have mapped a network drive to where the database is stored and have used it when creating the System DSN. The

Re: [PHP-DB] Radio buttons

2002-08-26 Thread Support @ Fourthrealm.com
Your radio buttons look fine. I would ensure to add quotes (single or double) around the attribute settings, for HTML compliance. If you must go without quotes, then make sure that you don't put spaces in any of the attribute values. INPUT type=radio value=6 name=surf_erf As for the form

RE: [PHP-DB] Array HELL!!!!

2002-02-22 Thread SpyProductions Support Team
That's not Array Hell, this is Array Hell: $Hell = array(satan,fire,brimstone); -Mike -Original Message- From: jas [mailto:[EMAIL PROTECTED]] Sent: Friday, February 22, 2002 4:37 AM To: [EMAIL PROTECTED] Subject: [PHP-DB] Array HELL I don't know what it is but I am having

[PHP-DB] RE: Special Insertion Into MySQL - at a loss!

2002-02-21 Thread SpyProductions Support Team
The following code is how you should retrieve the data from mySQL... if you wanted to update all of the information through one button, though, I would do it in a slightly different way... ?php $sql = SELECT whatever FROM whatever...; $result = mysql_query($sql); while ($row =

[PHP-DB] Special Insertion Into MySQL - at a loss!

2002-02-20 Thread SpyProductions Support Team
I have a special set of information retrieved from a while loop that I would like a person to be able to edit and send back into a MySQL table. I know all of the basic MySQL commands for doing such, but the PHP side to get the input from the form to go in is really stumping me. This is what I

[PHP-DB] PHP CGI Problems.....

2002-02-08 Thread SpyProductions Support Team
I am trying to put PHP into a template HTML document that is used by a CGI script. The PHP script isn't working at all - and even when I put some generic line of PHP (an echo), it doesn't turn out. Could the CGI be causing this? Is it possible to compile PHP to allow it in CGI files? Thanks,

[PHP-DB] PHP Site Statistics

2002-02-05 Thread SpyProductions Support Team
Just installed Les Visiteurs for php site statistic gathering...looks fine. Anyone have a favorite site statistic script/program in PHP? I'm experimenting with different ones to see what I like. The only disadvantage I can see with Les Visiteurs is having to put a couple of lines of code in

[PHP-DB] phpMyAdmin Problem....

2002-01-31 Thread SpyProductions Support Team
I just added phpMyAdmin to a new Apache Server, and I'm getting this error: cannot load MySQL extension, please check PHP Configuration. I did some research on the web, but couldn't come up with a solution to this error and couldn't find anyone listing it. Does anyone know if this is a

[PHP-DB] Copying a MySQL Table

2002-01-11 Thread SpyProductions Support Team
How does one copy a Mysql table? I poked around on the mysql site and found conventions for renaming one, but nothing for duplicating a table (to a new table with a different name). Thanks, -Mike -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED]

[PHP-DB] Checkboxes, PHP, and MySQL

2001-12-20 Thread SpyProductions Support Team
I've looked around in a few of the PHP lists for an answer to this, but can't come up with one. Here's what I am doing: I have a form with a few checkboxes. When the information as to whether the checkboxes are checked or not is 'saved' into the MySQL table, they are represented by a value of

RE: [PHP-DB] PHP Mysql apache economy hosting

2001-07-13 Thread support
I recommend MissoulaWeb for $10/month. http://www.missoulaweb.com/testimonials.phtml http://www.missoulaweb.com/allfeatures.phtml http://www.missoulaweb.com/compare.phtml (a chart) As for verifying uptime, try using the tool at http://uptime.netcraft.com/up/graph/ -- Allen Lee

RE: [PHP-DB] Need a shopping cart

2001-07-11 Thread support
Here's a list of some free shopping cart stuff http://www.missoulaweb.com/help/index.phtml?qid=46cat=11 -- Allen Lee http://MissoulaWeb.com $10/month PHP4 MySQL Hosting On Thu, 12 Jul 2001, Matthew Loff wrote: Ha ha... It makes perfect sense! I just assumed that since he was asking, he

Re: [PHP-DB] how to get ERROR message

2001-07-05 Thread support
echo mysql_error(); Allen Lee http://MissoulaWeb.com $10/month PHP4 and MySQL hosting On Thu, 5 Jul 2001, jong jong wrote: Hi, How can I see the error message from browser? My code is like this: htmlbody ? $conn=mssql_connect(xxx,,); mssql_select_db(xxx,$conn);

RE: [PHP-DB] delay script

2001-06-30 Thread support
Or you could do: ? sleep(10); // do nothing for 10 seconds header(Location: $url); ? Then you don't have to hope that the client's browser supports an html meta tag for refresh. -- Allen Lee http://MissoulaWeb.com Hosting, Programming and Design On Fri, 29 Jun 2001, Michael