Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialtawanda chikwavaire
7,613 Pointstrim function to remove blank spaces and verify that the value is not an EMPTY word
trim function to remove blank spaces and verify that the value is not an EMPTY word
<?php session_start();
$word1 = htmlspecialchars($SESSION['word'][1]); if (!isset($_SESSION['word'][1]) ( ||) empty(trim($SESSION['word'][1]){ header('location: /play.php?p=1'); exit;}
$word2 = htmlspecialchars($_SESSION['word'][2]); if (!isset($SESSION['word'][2])(||)empty(trim($SESSION['word'][2]){ header('location: /play.php?p=2'); exit; }
$word3 = htmlspecialchars($_SESSION['word'][3]); if (!isset($_SESSION['word'][3])(||)empty(trim($SESSION['word'][3]) {header('location: /play.php?p=3'); exit; }
$word4 =htmlspecialchars($_SESSION['word'][4]); if (!isset($SESSION['word'][4]) (||)empty(trim($SESSION['word'][4]){ header('location: /play.php?p=4'); exit;}
$word5 = htmlspecialchars($_SESSION['word'][5]); if (!isset($SESSION['word'][5])) (||)empty(trim($_SESSION['word'][5])){ header('location: /play.php?p=5'); exit; }
include 'inc/header.php'; echo '<h1>My Treehouse Story</h1>';
echo '<h1>My Treehouse Story</h1>';
echo '<p>There once was a(n) ' . $word1; echo ' programmer named ' . $word2; echo '. </p>'; echo '<p>This ' . $word3; echo ' programmer used Treehouse to learn to ' . $word4; echo ' the ' . $word5 . '.</p>';
echo ' <a class="btn btn-default btn-lg" href="#" role="button">Save Story</a>'; echo ' <a class="btn btn-default btn-lg"
href ="play.php" role="button">Play Again</a>'; echo ' <a class="btn btn-default btn-lg" href="index.php"
role role="button">Other Stories</a>';
include 'inc/footer.php';
3 Answers
Patrik Horváth
11,110 PointsThere is a lot of solutions here is my :)
<?php
session_start();
$word1 = htmlspecialchars($_SESSION['word'][1]);
$word2 = htmlspecialchars($_SESSION['word'][2]);
$word3 = htmlspecialchars($_SESSION['word'][3]);
$word4 = htmlspecialchars($_SESSION['word'][4]);
$word5 = htmlspecialchars($_SESSION['word'][5]);
if (isset($_SESSION['word'][1]) && isset($_SESSION['word'][2]) && isset($_SESSION['word'][3]) && isset($_SESSION['word'][4]) && isset($_SESSION['word'][5]) ) {
for($i = 1; $i <= 5; $i++) {
if (strlen($str) > 0 && strlen(trim($str)) == 0) {
header('Location: play.php?p=');
}
$_SESSION['word'][i] = str_replace(' ', '', $string);
empty($_SESSION['word'][i]);
}
include 'inc/header.php';
echo '<h1>My Treehouse Story</h1>';
echo '<p>There once was a(n) ' . $word1;
echo ' programmer named ' . $word2;
echo '. </p>';
echo '<p>This ' . $word3;
echo ' programmer used Treehouse to learn to ' . $word4;
echo ' the ' . $word5 . '.</p>';
echo ' <a class="btn btn-default btn-lg" href="#" role="button">Save Story</a>';
echo ' <a class="btn btn-default btn-lg" href="play.php" role="button">Play Again</a>';
echo ' <a class="btn btn-default btn-lg" href="index.php" role="button">Other Stories</a>';
include 'inc/footer.php';
} else {
if (empty($_SESSION['word'][1])) {
header('Location: play.php?p=1');
} else if (empty($_SESSION['word'][2])) {
header('Location: play.php?$p=2');
} else if (empty($_SESSION['word'][3])) {
header('Location: play.php?p=3');
} else if (empty($_SESSION['word'][4])) {
header('Location: play.php?p=4');
} else if (empty($_SESSION['word'][5])){
header('Location: play.php?p=5');
}
}
Prince Tendekai Mugonda
15,842 Pointssession_start(); trim($word1 = htmlspecialchars($_SESSION['word'][1])); trim($word1 = htmlspecialchars($_SESSION['word'][2])); trim($word1 = htmlspecialchars($_SESSION['word'][3])); trim($word1 = htmlspecialchars($_SESSION['word'][4])); trim($word1 = htmlspecialchars($_SESSION['word'][5]));
this will work out
Sebastian Nadeau
Front End Web Development Techdegree Student 27,300 PointsThis will work.
for ($word = 1; $word <= 5; $word++) {
$trimmed = trim($_SESSION['word'][$word]);
if (empty($trimmed)) {
if ($word == 1) {
header('location:play.php');
exit;
} else {
header('location:play.php?p='.$word);
exit;
}
}
}