Nomad,
Recording the test scores and writing the data into the DB shouldn't be that hard. You should probably get used to session variables if you aren't already and if you are planning to have tests soread out across multiple pages.
You can get a developers account from Authorize.net at no charge and they will provide a sample script(s) to show you how to connect to their server to process payments, it's not very hard but it's...
User Profile
Collapse
-
Sorry, yes by the numbering I was referring to was by the primary key(column field_id2). The problem was solved by switching the data type for the field to integer and then everything feel into place.Leave a comment:
-
-
Ordering Problem with PHP and MySQL
Hello PHP Peoples! I'm having a bit of a problem, probably simple, but I can't seem to find any info on how to fix it. PHP version is 4.4.7 and MySQL version is 4.0.27.
So here's the problem. Let's say I have 12 rows of data when I grab the rows from the DB with this code:
...Code:$sql = "select * from infop2 order by field_id2"; $result = mysql_query($sql,$connection); $rows = mysql_num_rows($result);
No activity results to display
Show More
Leave a comment: