Re: [PHP] databases, loops and tables oh my...

2006-02-23 Thread Jochem Maas
Jason Gerfen wrote: Not sure about this one, I am trying to execute a SQL query to retrieve records then loop over the records and display X amount per line. Any X ammount of what per 'line'? db records (or elelphants)? and by line do you mean 'html table row'? assuming I got that correct,

Re: [PHP] Databases

2003-09-25 Thread Duncan Hill
On Thursday 25 Sep 2003 08:14, Shaun van den Berg wrote: Hi Im kinda new to php. I have a linux server witch has our website on it. I want to make a download page. If a person clicks on a link , they must be able to download from our server. How difficult is this , can you send me an example

RE: [PHP] Databases

2003-09-25 Thread chris . neale
You find a reasonable example if you go googling for 'PHP tutorial' and then sit down for an evening and read the manual. C -Original Message- From: Shaun van den Berg [mailto:[EMAIL PROTECTED] Sent: 25 September 2003 07:14 To: [EMAIL PROTECTED] Subject: [PHP] Databases Hi Im kinda

Re: [PHP] Databases vs. File Access

2003-01-10 Thread Justin French
Totally depends on the data in question. I tend to organise my data in a mySQL database, for easy queries, sorting, categorisation, etc etc. However sometimes I associate a file to a record (eg a photo of a member or employee)... so the employee with the id 45 will have a photo stored in the

RE: [PHP] Databases?

2001-10-25 Thread Taylor, Stewart
http://hotwired.lycos.com/webmonkey/programming/php/tutorials/tutorial4.html -Stewart -Original Message- From: Kyle Smith [mailto:[EMAIL PROTECTED]] Sent: 26 October 2001 00:49 To: [EMAIL PROTECTED] Subject: [PHP] Databases? Can someone please give me the simplest tutorial to

Re: [PHP] Databases, arrays and woes

2001-08-31 Thread Papp Gyozo
I think it's very simple to do it. ?php //... $result = mysql_query('SELECT * FROM my_table ORDER BY Type, Place Name'); for($i = 0, $prev_type = FALSE; $i mysql_numrows($result); $i++) { $row = mysql_fetch_array($result); if ($prev_type !== $row['Type']) { // close the

RE: [PHP] Databases and HTML forms

2001-05-07 Thread Serge Vleugels
check out phpMyAdmin i use it everywhere Serge -Original Message- From: Manuel Lemos [mailto:[EMAIL PROTECTED]] Sent: Monday, May 07, 2001 4:22 AM To: [EMAIL PROTECTED] Subject: Re: [PHP] Databases and HTML forms Hello Michael, On 20-Apr-01 14:38:48, you wrote: I'm needing

Re: [PHP] Databases and HTML forms

2001-05-06 Thread Manuel Lemos
Hello Michael, On 20-Apr-01 14:38:48, you wrote: I'm needing to have a form that pulls a bunch of database fields into it and then allows you to modify the fields and does the subsequent update in the database. This seems like something that has to be done all the time. Is there a right way

Re: [PHP] Databases and HTML forms

2001-04-20 Thread Godd
Just Kinda code it up -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]