[PHP-WIN] So great , thank so much

2003-08-24 Thread Thomas Edward Lawrence
So great , thank so much , I am just a beginer , thanks all people who are intersted in and anwser my questions , thank you . ... "Donatas" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > This is how I would do it > > mysql_connect('localhost', '', ''); > mysql_s

[PHP-WIN] So great , thank so much

2003-08-24 Thread Thomas Edward Lawrence
So great , thank so much , I am just a beginner , thanks all people who are intersted in and anwser my questions , thank you . ... "Donatas" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > This is how I would do it > > mysql_connect('localhost', '',

RE: [PHP-WIN] please help with table again

2003-08-24 Thread Amzadi
Since you mentioned it, what do you think is the best entry level book for programming PHP? I'd like to hear others opinions as well. -Original Message- From: Svensson, B.A.T. (HKG) [mailto:[EMAIL PROTECTED] Sent: Sunday, August 24, 2003 8:41 AM To: 'Thomas Edward Lawrence '; '[EMAIL PROT

RE: [PHP-WIN] this is so difficult for me

2003-08-24 Thread Svensson, B.A.T. (HKG)
You need two loops for that, just like the code that somebody posted for you. Reuse that code, and it will probabley work out oki fine with you. -Original Message- From: Thomas Edward Lawrence To: [EMAIL PROTECTED] Sent: 2003-08-24 11:56 Subject: [PHP-WIN] this is so difficult for me I

RE: [PHP-WIN] please help with table again

2003-08-24 Thread Svensson, B.A.T. (HKG)
Are you trying to solve a particular problem or do you want to learn to do programing? I don't want to be rude, but the question you ask are fairly basic programming knowledge, and I would recommend you to get a good beginners book on programming. Anyway, on to your question: If you want to wr

Re: [PHP-WIN] Form data

2003-08-24 Thread la Sorour
you'll have to put this piece of code in the form your submitting to to grab your form variables: extract($_POST); extract($_GET); see this link: http://www.ithome.org/page.php?page=2 -- From: "Muhammad Imran" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Subject: [PHP-WI

RE: [PHP-WIN] this is so difficult for me

2003-08-24 Thread Donatas
This is how I would do it ' for ($j = 0; $j != $columns; $j++) { $row = mysql_fetch_array($result); $_SESSION["picture(".($i * $columns + $j).")"] = $row["pictures"]; echo "" ; } echo ''; } ?> Sorry if there are any bugs here, I didn't test it :) Cheers, Donny -Original

[PHP-WIN] this is so difficult for me

2003-08-24 Thread Thomas Edward Lawrence
I have an array $row["pictures"] which includes 15 pictures , I want to echo it like this , this is so difficult for me , picture1picture2picture3picture4picture5 picture6picture7picture8picture9picture10 picture11picture12picture13picture14pictur

[PHP-WIN] problem in VB

2003-08-24 Thread cmkpl
how to link the vb to php by dll of php so i can input the script in vb and get outout through vb --- Outgoing mail is certified Virus Free. Checked by AVG anti-virus system (http://www.grisoft.com). Version: 6.0.512 / Virus Database: 309 - Release Date: 19/8/2003 -- PHP Windows Mailing List (h

RE: [PHP-WIN] please help with table again

2003-08-24 Thread Duane Lakoduk
Ok, try this; "; for($y=1; $y<6; $y++){ print "".($y+$lastcol).""; } print ""; $lastcol=$y; } ?> php, Duane -Original Message- From: Thomas Edward Lawrence [mailto:[EMAIL PROTECTED] Sent: Saturday, August 23, 2003 11:57 PM To: [EMAIL PRO

RE: [PHP-WIN] please help with table again

2003-08-24 Thread BQ777
"; $max_rows = floor(bcdiv($max_values,$max_cols,2)); $counter = 0; for($schleife=0; $schleife<$max_rows; $schleife++){ echo ""; for($schleife_cols=0; $schleife_cols<$max_cols; $schleife_cols++){

php-windows Digest 24 Aug 2003 04:59:45 -0000 Issue 1884

2003-08-24 Thread php-windows-digest-help
php-windows Digest 24 Aug 2003 04:59:45 - Issue 1884 Topics (messages 21220 through 21222): Re: please help with table 21220 by: H Marc Bower Thanks all 21221 by: Thomas Edward Lawrence please help with table again 21222 by: Thomas Edward Lawrence Administrivia: T

[PHP-WIN] please help with table again

2003-08-24 Thread Thomas Edward Lawrence
I want it echo 5 columns with 3 row , but it also echo numbers which increase to follow columns like this , how I must write , please show me again , thank you . 12345 678910 1112131415 -- PHP Windows Mailing List (http://www.php.net/) To unsub

[PHP-WIN] Thanks all

2003-08-24 Thread Thomas Edward Lawrence
so good , thank you , thanks so muck ... "H Marc Bower" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Give this a go: > > $row = 0; > $col = 0; > echo ""; > while($row < 3) > { > $row++; > echo ""; > while($col < 5) > { >$col++; >echo