Quote:
Originally Posted by Colin F
well... instead of calling echo, you'll have to make another template and output everything to a var, using that template. that might look something like this:
eval('$tripsshowbits .= "' . fetch_template('LIST_TRIPS_bit') . '";');
in the loop.
then, use the $tripsshowbits variable to call the data.
|
What do you mean exactly by output everything to a var? As you can tell I am new to VB and have limited experience with PHP. How would I get all the variables($tripname $origination $destination $datedepart $datereturn $planning $tripdetails, etc.) from my query into $tripsshowbits?