close ad
 
Important WebAssist Announcement
open ad
View Menu

Technical Support Forums

Free, outstanding support from WebAssist and your colleagues

rating

Simple if...else help needed

Thread began 10/11/2011 9:50 am by Jared Lui | Last modified 10/11/2011 1:34 pm by Jared Lui | 991 views | 2 replies |

Jared Lui

Simple if...else help needed

For some reason I cannot use the same technique that I used to only show if a value is found in a database query.

My goal: the first <tr> should display if a user is logged in. If not the second <tr> should display.

Using the code below, the first <tr> does display correctly if the user is logged in and the second <tr> does not display. This is the desired outcome. However, if no user is logged in, neither <tr> displays. The desired outcome is for the second <tr> to display only.

I have tried several different operator combinations as well as using a different SESSION for one or the other statements thinking the code was confused.

I believe I need to use an if/else statement instead. I've looked through several tutorials and it seems like it would be straight forward but I either show no results or errors. I could use some guidance.

Thanks in advance!

<?php if($_SESSION['Username'] != "") { ?>
<tr>
<th class="formTable">Username:</th>
<td class="formTable"><?php echo $_SESSION['Username']; ?>
<input type="hidden" name="Reg_Username" id="Reg_Username" value="<?php echo $_SESSION['Username']; ?>" size="32" /></td>
</tr>
<?php } ?>

<?php if($_SESSION['Username'] = "") { ?>
<tr>
<th class="formTable">Name:</th>
<td class="formTable"><input type="text" name="Name" id="Name" value="" size="32" /></td>
</tr>
<?php } ?>

Sign in to reply to this post

Jason ByrnesWebAssist

make sure you start the session before trying to compare the session value.

use:
<?php @session_start(); ?>

before the first if statement.


instead of:
<?php } ?>

<?php if($_SESSION['Username'] = "") { ?>


try using:
<?php } else { ?>

Sign in to reply to this post

Jared Lui

I was so close!

I had started the session so that wasn't the issue but a good reminder none the less.

My if/else statement attempts had it all correct except I was missing the "?".

I had: <?php } else { >
Instead of: <?php } else { ?>

Thanks once again Jason. Learning more and more everyday!

Sign in to reply to this post

Build websites with a little help from your friends

Your friends over here at WebAssist! These Dreamweaver extensions will assist you in building unlimited, custom websites.

Build websites from already-built web applications

These out-of-the-box solutions provide you proven, tested applications that can be up and running now.  Build a store, a gallery, or a web-based email solution.

Want your website pre-built and hosted?

Close Windowclose

Rate your experience or provide feedback on this page

Account or customer service questions?
Please user our contact form.

Need technical support?
Please visit support to ask a question

Content

rating

Layout

rating

Ease of use

rating

security code refresh image

We do not respond to comments submitted from this page directly, but we do read and analyze any feedback and will use it to help make your experience better in the future.

Close Windowclose

We were unable to retrieve the attached file

Close Windowclose

Attach and remove files

add attachmentAdd attachment
Close Windowclose

Enter the URL you would like to link to in your post

Close Windowclose

This is how you use right click RTF editing

Enable right click RTF editing option allows you to add html markup into your tutorial such as images, bulleted lists, files and more...

-- click to close --

Uploading file...