Jump to content

Recommended Posts

ok so first off im a noob at php,just started learning it lol.

 

i cant get the if statements to work right,well actually i dont know how to really use the if statements.

 

heres my code:

<?PHP
  session_start();

  if(isset($_SESSION['views'])){
     $_SESSION['views'] = $_SESSION['views']+ 1;
  }else{
     $_SESSION['views'] = 1;
  }

$number = "";

if($_SESSION['views'] < 10){
$number = "0000".$_SESSION['views'];
};

if($_SESSION['views'] < 100){
$number = "000".$_SESSION['views'];
};

if($_SESSION['views'] < 1000){
$number = "00".$_SESSION['views'];
};

if($_SESSION['views'] < 10000){
$number = "0".$_SESSION['views'];
};

if($_SESSION['views'] < 100000){
$number = $_SESSION['views'];
};

$img_number = imagecreate(100,25);
$backcolor = imagecolorallocate($img_number,255,0,0);
$textcolor = imagecolorallocate($img_number,255,255,255);

imagefill($img_number,0,0,$backcolor);

Imagestring($img_number,10,5,5,$number,$textcolor);

header("Content-type: image/png");
imagepng($img_number);
?>

 

it isnt displaying the 0000 before the number,just the number =\

Link to comment
https://forums.phpfreaks.com/topic/242097-need-help-with-if-statement/
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.