سلام
این تابع را ببنید.یک تابع از کلاس است و از آن کلاس نمونه سازی صورت گرفته
فایل کافیگ که حاوی کد اتصال است :
وقتی توی صفحه ایندکس var_dump میگیرم ازrow3 خروجی 2تا مشکل اره اول اینکه فارسی ها بهم ریختس .دوم اینکه اندیس های دوم عددی است مگر باید هم نام فیلد جدول باشه؟
فایل ایندکسم :
و خروجی :
ممنون میشم راهنمایی نمایید
این تابع را ببنید.یک تابع از کلاس است و از آن کلاس نمونه سازی صورت گرفته
1 2 3 4 5 6 7 8 9 10 | function post_content(){ global $con ; $sqlm = "SELECT * FROM news " ; $result = $con ->query( $sqlm ); $row3 = $result ->fetch_all(); var_dump( $row3 ); } |
فایل کافیگ که حاوی کد اتصال است :
1 2 3 4 5 6 | <?php $con = mysqli_connect( 'localhost' , 'root' , '' , 'paraq' ); if (mysqli_connect_errno( $con ) > 0) echo "Can not connect to server:<br/>" .mysqli_connect_error(); mysqli_set_charset( $con , "utf8" ); ?> |
فایل ایندکسم :
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | <?php include_once ( 'cfn.php' ); include_once ( 'config-main.php' ); include_once ( 'tempclass.php' ); $template = new template(); include_once ( 'function.php' ); //include_once('theme/'.TEMPLATE.'/index.php'); postcontent(); echo '<br>' ; $sqlm = "SELECT * FROM news " ; $result = $con ->query( $sqlm ); $row3 = $result ->fetch_all(); echo $row3 [ '1' ][ '1' ]; ?> |
و خروجی :
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 | <span style="font-weight: bold;">array</span> <span style="font-style: italic;">(size=3)</span> 0 <span style="color: #888a85;">=></span> <span style="font-weight: bold;">array</span> <span style="font-style: italic;">(size=6)</span> 0 <span style="color: #888a85;">=></span> string <span style="color: #cc0000;">'2'</span> <span style="font-style: italic;">(length=1)</span> 1 <span style="color: #888a85;">=></span> string <span style="color: #cc0000;">'تست2'</span> <span style="font-style: italic;">(length=7)</span> 2 <span style="color: #888a85;">=></span> string <span style="color: #cc0000;">'/upload/files/1.jpg'</span> <span style="font-style: italic;">(length=19)</span> 3 <span style="color: #888a85;">=></span> string <span style="color: #cc0000;">'<p>تیت</p> '</span> <span style="font-style: italic;">(length=15)</span> 4 <span style="color: #888a85;">=></span> string <span style="color: #cc0000;">'1458033961'</span> <span style="font-style: italic;">(length=10)</span> 5 <span style="color: #888a85;">=></span> string <span style="color: #cc0000;">'0'</span> <span style="font-style: italic;">(length=1)</span> 1 <span style="color: #888a85;">=></span> <span style="font-weight: bold;">array</span> <span style="font-style: italic;">(size=6)</span> 0 <span style="color: #888a85;">=></span> string <span style="color: #cc0000;">'6'</span> <span style="font-style: italic;">(length=1)</span> 1 <span style="color: #888a85;">=></span> string <span style="color: #cc0000;">'خبر تست دسته بندی'</span> <span style="font-style: italic;">(length=31)</span> 2 <span style="color: #888a85;">=></span> string <span style="color: #cc0000;">'/upload/files/o7tzgt5bvu5rm62a6ays.jpg'</span> <span style="font-style: italic;">(length=38)</span> 3 <span style="color: #888a85;">=></span> string <span style="color: #cc0000;">'<p>تست است</p> <p>چگ</p> '</span> <span style="font-style: italic;">(length=37)</span> 4 <span style="color: #888a85;">=></span> string <span style="color: #cc0000;">'1457896697'</span> <span style="font-style: italic;">(length=10)</span> 5 <span style="color: #888a85;">=></span> string <span style="color: #cc0000;">'0'</span> <span style="font-style: italic;">(length=1)</span> 2 <span style="color: #888a85;">=></span> <span style="font-weight: bold;">array</span> <span style="font-style: italic;">(size=6)</span> 0 <span style="color: #888a85;">=></span> string <span style="color: #cc0000;">'10'</span> <span style="font-style: italic;">(length=2)</span> 1 <span style="color: #888a85;">=></span> string <span style="color: #cc0000;">'خبر تست دسته بندی'</span> <span style="font-style: italic;">(length=31)</span> 2 <span style="color: #888a85;">=></span> string <span style="color: #cc0000;">'/upload/images/1.jpg'</span> <span style="font-style: italic;">(length=20)</span> 3 <span style="color: #888a85;">=></span> string <span style="color: #cc0000;">'<p>تست</p> '</span> <span style="font-style: italic;">(length=15)</span> 4 <span style="color: #888a85;">=></span> string <span style="color: #cc0000;">'1458032702'</span> <span style="font-style: italic;">(length=10)</span> 5 <span style="color: #888a85;">=></span> string <span style="color: #cc0000;">'0'</span> <span style="font-style: italic;">(length=1)</span> خبر تست دسته بندی |
ممنون میشم راهنمایی نمایید