PHP warning

Undefined variable $jnu

/home3/jilan/public_html/protected/views/jobs/country.php(352)

340                         $stmt = $GLOBALS["mysqli_con"]->prepare("SELECT COUNT(*) as count FROM followers WHERE following_id = ?");
341                         $stmt->bind_param("i", $profileUserId);
342                         $stmt->execute();
343                         $result = $stmt->get_result();
344                         if ($countRow = $result->fetch_assoc()) {
345                             $followerCount = $countRow['count'];
346                         }
347                         ?>
348                            
349                <div class="col-lg-12 mb-30">
350                         <div class="post">
351                             <div class="post-header">
352                                 <a href="<?php echo REDIRECT . 'site/userpf?id=' . $row['id']; ?>"><img src="<?php echo $jnu; ?>" alt="Autocrypt Logo" class="profile-pic" ></a>
353                                 <div class="post-info">
354                                     <h1><?php echo $row['uname']; ?></h1>
355                                     <p>Post Date:- <?php echo $row['dop']; ?></p>
356                                 </div>
357                                 <div class="follow-button">
358                                   <?php if ($isLoggedIn && $currentUserId != $profileUserId): ?>
359                                         <button class="follow-btn" id="follow-btn"
360                                                 onclick="toggleFollow(<?= $currentUserId ?>, <?= $profileUserId ?>)">
361                                             <?= $isFollowing ? 'Unfollow' : 'Follow' ?>
362                                         </button>
363                                     <?php endif; ?>
364                                     

Stack Trace

#4
+
 /home3/jilan/public_html/protected/controllers/JobsController.php(55): CController->render("country")
50        public function actionState() {
51         $this->render('state');
52     }
53          
54        public function actionCountry() {
55         $this->render('country');
56     }
57     
58       public function actionIndustry() {
59         $this->render('industry');
60     }
#17
+
 /home3/jilan/public_html/index.php(22): CApplication->run()
17     defined('YII_DEBUG') or define('YII_DEBUG', true);
18 // specify how many levels of call stack should be shown in each log message
19     defined('YII_TRACE_LEVEL') or define('YII_TRACE_LEVEL', 3);
20 
21     require_once($yii);
22     Yii::createWebApplication($config)->run();
23 }  
2026-03-11 00:20:05 Apache Yii Framework/1.1.10