My PHP page looks like this:
$bannertext = $_GET['bannertext'];
$banner = json_decode($bannertext);
How do I access each of those strings now? Like echo $banner[1]; and so on?
|
|
That depends, what is the value of
|
|||
|
If you want to use echo $banner[1], $banner has to be an array. You can use explode for that: $banner = explode(' ', $bannertext); echo $banner[1]; |
|||
|
|