Re: [PHP] hello the list

2002-07-14 Thread DL Neil
Welcome Nicolas, =You didn't actually say what the problem was! =Some have made suggestions, please also consider (below): i'm new and i'm trouble with this code :'( can U help me please ?? this is the code : while ($cd_tbl = mysql_fetch_array ($result)) { $cd_id = $cd_tbl['cd_id']; $cd_oeuvre

Re: [PHP] hello the list

2002-07-13 Thread Matt
> echo "$cd_id"; Strings work differently when the outer quotes are double or single quotes. Inside double quotes variables will be converted into their values. Inside single they will not. So: $var = 'Hello World'; echo "$var\n"; will result in Hello World and: $var = 'Hello World'; echo '$va

Re: [PHP] hello the list

2002-07-13 Thread Alberto Serra
ðÒÉ×ÅÔ! Nicolas GUILLOU wrote: You may either write: > echo "$cd_id"; or > echo "size=1>$cd_compositeur"; ðÏËÁ áÌØÂÅÒÔÏ ëÉÅ× @-_=}{=_-@-_=}{=_-@-_=}{=_-@-_=}{=_-@-_=}{=_-@-_=}{=_-@-_=}{=_-@ LoRd, CaN yOu HeAr Me, LiKe I'm HeArInG yOu? lOrD i'M sHiNiNg... YoU kNoW I AlMoSt LoSt My MiNd, BuT

[PHP] hello the list

2002-07-13 Thread Nicolas GUILLOU
i'm new and i'm trouble with this code :'( can U help me please ?? this is the code : while ($cd_tbl = mysql_fetch_array ($result)) { $cd_id = $cd_tbl['cd_id']; $cd_oeuvre = $cd_tbl['cd_oeuvre']; $cd_chef = $cd_tbl['cd_chef']; $cd_compositeur = $cd_tbl['cd_compositeur']; <---par