YeSSounD Posted March 5, 2015 Share Posted March 5, 2015 Добрый день господа профессионалы. Помогите одной строчкой кода. Нужно вытащить Имя и Фамилию клиента в my-accaunt. Что бы при входе в личный кабинет было что то типо: Добро пожаловать "Имя" " Фамилия". Link to comment Share on other sites More sharing options...
YeSSounD Posted April 2, 2015 Author Share Posted April 2, 2015 up {php} $host="base"; $user="user"; $password="*****"; $db="base"; mysql_connect($host, $user, $password) or die("MySQL сервер недоступен!".mysql_error()); mysql_select_db($db) or die("Нет соединения с БД".mysql_error()); $result = mysql_query("SELECT firstname, lastname FROM yes_customer WHERE id='4'",$db); $myrow = mysql_fetch_array($result); echo $myrow['firstname']['lastname']; {/php} Подскажите что в коде не правильно!? Всё уже перепробывал. К базе конектится нормально. Но абсолютно ничего не выводится! Link to comment Share on other sites More sharing options...
Kerm Posted April 3, 2015 Share Posted April 3, 2015 {$cookie->customer_firstname} и {$cookie->customer_lastname} пропиши в шаблоне 1 Link to comment Share on other sites More sharing options...
YeSSounD Posted April 4, 2015 Author Share Posted April 4, 2015 Спасибо огромное. Все работает. Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now