chickenugget
Newbie
- Feb 24, 2009
- 47
- 10
I am complete noob when it comes to coding and am trying to display a random lead merchant on my page each time the page is loaded.
Below is the script so far - I can't seem to get it to pull in the actual 'merchant.txt' file though when the random number is equal to 1.
Any help is much appreciated.
Below is the script so far - I can't seem to get it to pull in the actual 'merchant.txt' file though when the random number is equal to 1.
Any help is much appreciated.
Code:
<?
$random_number = rand(1,4);
if($random_number = 1){
echo "<?php include "/merchant1.txt" ; ?>";
}
?>