Yes I do...
for an online billing system...
Kurth Bemis
Senior Network Admin/Owner: USAExpress.net
Owner: Ozone Computer
http://kurth.hardcrypto.com
PGP Key Avail.
-
Uh!.Uh!.Uh!."I'm done with this."...Out the windo
$result = mysql_query( "SELECT pkgid FROM plans");
while($row = mysql_fetch_assoc($result))
{
$package = mysql_fetch_assoc(mysql_query( "SELECT * FROM plans WHERE
pkgid='$row[pkgid]'"));
}
obviously this will have
$package = array("key" => "value", ...);
are you wanting to have the above be
I'm not sure exactly what you need help with, but if you're getting any
errors, I'd recommend adding the resource identifier to your mysql_*
functions (usually ($db = mysql_connect(), but YMMV).
But I wonder if you were trying to do something else?
Erik
On Monday, January 21, 2002, at 05:51
I think this is not working because "\t" is a regular expression and explode
only works on strings..
Actually, I have no idea and I feeling very confused right now but maybe
try "split" and see how it goes.
Brian
At 13:37 26/09/2001 -0400, John Frenzel wrote:
>I have created a 2D array, th
> - Original Message -
> From: "AJDIN BRANDIC" <[EMAIL PROTECTED]>
> To: "Wagner Tomy" <[EMAIL PROTECTED]>
> Cc: <[EMAIL PROTECTED]>
> Sent: Friday, July 27, 2001 2:34 PM
> Subject: Re: [PHP] 2D array
>
>
> > Wag,
> >
> >
EMAIL PROTECTED]>
Cc: <[EMAIL PROTECTED]>
Sent: Friday, July 27, 2001 2:34 PM
Subject: Re: [PHP] 2D array
> Wag,
>
> I do not wish to push whole of the row into an array.
> Also I need the id of the parent array to be $myname;
>
> Ajdin
>
> On Fri, 27 Jul 2001, Wag
Wag,
I do not wish to push whole of the row into an array.
Also I need the id of the parent array to be $myname;
Ajdin
On Fri, 27 Jul 2001, Wagner Tomy wrote:
> $my2darray = Array();
>
> while($row = mysql_fetch_row($result)) {
> array_push($my2darray, $row);
> }
>
> OR:
>
> for($i = 0; $
or:
$my2darray[] = $row;
SSL
On Fri, 27 Jul 2001, Wagner Tomy wrote:
> $my2darray = Array();
>
> while($row = mysql_fetch_row($result)) {
> array_push($my2darray, $row);
> }
>
> OR:
>
> for($i = 0; $i < mysql_num_rows($result); $i++) {
> $row = mysql_fetch_row($result);
> $my2darr
$my2darray = Array();
while($row = mysql_fetch_row($result)) {
array_push($my2darray, $row);
}
OR:
for($i = 0; $i < mysql_num_rows($result); $i++) {
$row = mysql_fetch_row($result);
$my2darray[$i] = $row;
}
Wagner Tomy
Editus S.A.
- Original Message -
From: "AJDIN BRANDIC" <[EMAIL
<[EMAIL PROTECTED]>
To: "Kurth Bemis" <[EMAIL PROTECTED]>
Cc: <[EMAIL PROTECTED]>
Sent: Wednesday, January 10, 2001 8:46 PM
Subject: Re: [PHP] 2d array?
> I'll give it a whirl ...
>
> $array_of_page_titles = array(
> 'aboutus.php' => '
I'll give it a whirl ...
$array_of_page_titles = array(
'aboutus.php' => 'All about our company',
'index.php' => 'Welcome to www.server.com!',
'foo.php' => 'I\'m a worthless script!'
);
Then ...
$file should be the name of the file - there is a
11 matches
Mail list logo