Forum: PHP Aug 17th, 2004 |
| Replies: 1 Views: 3,813 I am a newcomer to PHP and SQL too but have just managed to setup a full e-commerce website for a friends company.
What you should do is go to the MySQL website and download a copy of MySQL for your... |
Forum: PHP Aug 17th, 2004 |
| Replies: 3 Views: 8,124 The Host company use Linux servers and run the latest versions of SQL & PHP
Huw |
Forum: PHP Aug 5th, 2004 |
| Replies: 3 Views: 8,124 I need to add a paypal 'add to cart' button to my page to submit the contents of my table to a shopping cart. The contents of the table are variables as they are from a sql query. Does anyone know... |
Forum: PHP Aug 5th, 2004 |
| Replies: 10 Views: 4,260 Try this as the query on ur second page. worked for me. (Got this off Roberdin)
$query = "SELECT * FROM mobsters where ID='{$_GET['ID']}'";
Huw. |
Forum: PHP Aug 3rd, 2004 |
| Replies: 1 Views: 3,586 I have used the following code on one of my pages to place the variables in the URL for the next page:
<?php
$db = mysql_connect("HOST","USERNAME","PASSWORD");
mysql_select_db("DBNAME",$db);... |
Forum: PHP Aug 2nd, 2004 |
| Replies: 4 Views: 5,028 Am new to SQL and PHP. Only been using them for about 3 weeks to create an e-commerce site for some friends. I have been trying to set up a link to paypal's shopping basket feature from my listing... |