Jump to content

[SOLVED] unexpected elseif


Foser

Recommended Posts

<?php 
start_session();
if (isset($_SESSION['views'])); {
$_SESSION['views'] = $_SESSION['views'] + 1; }
elseif (isset($_SESSION['views']) == 10); {
unset($_SESSION['views']); }
else 
$_SESSION['views'] = 1;

?>

 

I don't understand what is the problem with my elseif command. Looks good to me, I've played arround with it a bit but does not work! :(

 

Thanks

Link to comment
Share on other sites

<?php

session_start();

if (isset($_SESSION['views']) and $_SESSION['views'] < 10) {

$_SESSION['views'] = $_SESSION['views'] + 1; }

elseif (isset($_SESSION['views']) == 10) {

unset($_SESSION['views']); }

else {

$_SESSION['views'] = 1;

}

?>

Link to comment
Share on other sites

and $_SESSION['views'] < 10  

 

i dont understand why we need this?

 

<?php 
start_session();
if (isset($_SESSION['views']))
{
$_SESSION['views'] = $_SESSION['views'] + 1; 
}elseif (isset($_SESSION['views']) == 10){
unset($_SESSION['views']); 
$_SESSION['views'] = 1;
}

?>

 

and i dont see a difference... Ive played with those {} and it does not work.

Link to comment
Share on other sites

try this

 

counts to 10 then back to 1

<?php 
session_start(); //<-- corrected

if ($_SESSION['views'] == 10)
{
unset($_SESSION['views']); 
}

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

echo "Views:".$_SESSION['views'];
?>

Link to comment
Share on other sites

<?php 
session_start();
if (isset($_SESSION['views'])); {
$_SESSION['views'] = $_SESSION['views'] + 1; }
if (isset($_SESSION['views']) == 10); {
unset($_SESSION['views']); }
else {
$_SESSION['views'] = 1; }
?>

 

well ive fixed a few twicks but in a different order than yours why does it matter that unset is before isset i get a unwanted else command apparenthly :S

 

thanks, just trying to understand php :) and thanks for the great help so far!~

Link to comment
Share on other sites

nothing

 

try this

 

echo $var;

 

as $var isn't set thiers nothing to echo, same when you unset.. it no longer exists (so isset will be false)

 

but

$var="";

 

will echo nothing but isset will be true as it exists but contains an empty string..

 

make sense ?

Link to comment
Share on other sites

yea, i got it working now.

but for some reason the season variable isn't going up after a refresh.

<?php 
session_start();
if ($_SESSION['view'] == 10); {
unset($_SESSION['view']); }
if (isset($_SESSION['view']))
$_SESSION['view'] = $_SESSION['view']+ 1; 
else { $_SESSION['view'] = 1; } 
echo "Views: " .$_SESSION['view']. "<br> This will reset after 10 refreshes."; 
?>

 

I checked my very basic season counter and looks like this, can't find the mistake.

Link to comment
Share on other sites


<?php 
session_start();
if ($_SESSION['view'] == 10);
{
unset($_SESSION['view']);
}

if ( isset($_SESSION['view']) )
//somthing is missing here
{ //Ahh thats better
$_SESSION['view']++; //add's 1 
else {
$_SESSION['view'] = 1;
} 
echo "Views: " .$_SESSION['view']. "<br> This will reset after 10 refreshes."; 
?>

Link to comment
Share on other sites

<?php 
session_start();
if ($_SESSION['view'] == 10); {
unset($_SESSION['view']); }
if (isset($_SESSION['view'])) {
$_SESSION['view'] = $_SESSION['view']++; } 
else { $_SESSION['view'] = 1; } 
echo "Views: " .$_SESSION['view']. "<br> This will reset after 10 refreshes."; 
?>

 

It still does not add for some reason :S

Link to comment
Share on other sites

wrong one ;)

 

If starts a block

 

ie

<?php
if( $a == $b)
{
echo "hello ";
echo "world"
}
?>

 

Quote this post to see the how to fix (or try to find it, as your intrested in learning bug finding is key)

 

if ($_SESSION['view'] == 10); {

to

if ($_SESSION['view'] == 10) {

Link to comment
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.