Jump to content

simple Array


web_master

Recommended Posts

How will work this script?

 

if the "interpreter_1" is present in dbase print the interpreter_1,

if the "interpreter_2" is present in dbase print the interpreter_2 with a same variable.

 

<?php

$cart_array=array();

 

if($request['interpreter_1']) {

$cart_print[1]=$request['interpreter_1'];

} else {

$cart_print[1]="";

}

 

if($request['interpreter_2']) {

$cart_print[2]="You do it";

} else {

$cart_print[2]="";

}

print $cart_array;

?>

Link to comment
https://forums.phpfreaks.com/topic/52095-simple-array/
Share on other sites

Sorry, you'll need to be allot clearer in your explanation. You speak of dbase (assumed to be database) but don't show any query.

 

$query_return=mysql_query("SELECT * FROM cart ORDER BY cart_id DESC");

 

while ($request=mysql_fetch_array($query_return)) {

 

$cart_array=array();

 

  if($request['interpreter_1']) {

      $cart_print[1]=$request['interpreter_1'];

  } else {

      $cart_print[1]="";

  }

 

  if($request['interpreter_2']) {

      $cart_print[2]="You do it";

  } else {

      $cart_print[2]="";

  }

print $cart_array;

} // end of while

Link to comment
https://forums.phpfreaks.com/topic/52095-simple-array/#findComment-256837
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.