<?php
$log = $name['login']; # Логин из сессии
$resul = mysqli_query($connection, "SELECT * FROM `users` WHERE `login` = '{$log}'" );
# ^ Мне нужно достать id юзера
$row = mysqli_fetch_assoc($resul);
function getPost(){
global $connection, $row;
$num = isset($row['id']) ? $row['id'] : false;
$sql = "SELECT * FROM `posts` WHERE `user_id` = '{$num}' ORDER BY `id` DESC ";
# ^ хочу достать все посты, с id пользователя
$result = mysqli_query($connection, $sql);
$posts = mysqli_fetch_all($result, MYSQLI_ASSOC);
return $posts;
}
$posts = getPost();
var_dump($posts);
<?php
$news_title_st = 'Пример текста заголовка помещенный в тег';
$news_title_md = mb_strimwidth($news_title_st, 0, 10, "...", "utf-8");
echo $news_title_md; //Пример ...
$news_title_md = mb_strimwidth($news_title_st, 0, 13, "...", "utf-8");
echo $news_title_md; //Пример тек...
jQuery(document).ready(function(){
jQuery('#payment_method').click(function() {
if (jQuery(this).val() == "bacs") {
jQuery('#billing_email').removeAttr('required').show();
} else if (jQuery(this).val() == "rbspayment") {
jQuery('#billing_email').attr('required', 'required').show();
} else {
jQuery('#billing_email').removeAttr('required').hide();
}
})
})