Link to home
Start Free TrialLog in
Avatar of seopti
seopti

asked on

php echo/print question

How can I echo the variable for $bizName
<?php echo $carsStuff['bizName'];?>   into the script below?

 I would like to see the $bizName within the   tagValue='$carsStuff['bizName']'

<?php  print tubepressGallery("mode='tag'  tagValue='test' ajaxPagination='true' paginationBelow='false' orderBy='relevance' border='true' filter_racy='true' playerLocation='fancybox' resultsPerPage='3'" ); ?>
Avatar of Guy Hengel [angelIII / a3]
Guy Hengel [angelIII / a3]
Flag of Luxembourg image

this shall do:
<?php  print tubepressGallery("mode='tag'  tagValue='". $carsStuff['bizName'] ."' ajaxPagination='true' paginationBelow='false' orderBy='relevance' border='true' filter_racy='true' playerLocation='fancybox' resultsPerPage='3'" ); ?>

Open in new window

ASKER CERTIFIED SOLUTION
Avatar of Guy Hengel [angelIII / a3]
Guy Hengel [angelIII / a3]
Flag of Luxembourg image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial