Jump to content
  • 0

if в printf


3d_max_9
 Share

Question

Всем привет!

Появилась маленькая ну или большая проблема(для кого как), есть БД с нее вытягиваем некие поля через do while/

вот код примерный:

</P><P>... некий код</P><P>do
{
printf("
<div class='post'>
<h2 class='title'>%s</h2>
<h3 class='posted'>Дата: %s</h3>
<div class='story'>
<div class='gallery_in'><ul style='margin:0px; padding:0px;'><li><a href='%s' title='%s' ><img src='%s' width='520' height='320'></a></li></ul></div>
<blockquote>
<p>“ %s”</p>
</blockquote>
</div>
<div class='meta'>
<p>Автор: %s | <a href='cat.php?c=%s' class='category'>".$catt."</a> | <a href='add-comment.php?id=%s' class='comment'> Коментарии »</a> | <a href='%s'>Место на карте</a></p>
</div>
</div>" ,$myrow["name"] ,$myrow["time"], $myrow["adres_min"], $myrow["name"], $myrow["adres_min"], $myrow["description"], $myrow["author"], $myrow["cat"], $myrow["id"], $myrow["mapa"]);

}
while ($myrow=mysql_fetch_array($result))
 

Загадка заключается в следующем:

как проверить переменную $myrow["mapa"] и если она к примеру ровна 1 то в этом месте выводим <a href='#'>Место на карте</a> а если else то что бы так и осталось <a href='%s'>Место на карте</a> 

Буду признателен за любую помощь, дажет на ссылки яндекса с гуглом но только с запросом  :) .

Все уже облазил!

Link to comment
Share on other sites

5 answers to this question

Recommended Posts

  • 0
if ($myrow('mapa') === 1) echo '<a href="#">Место на карте</a>';

else echo '<a href="'.$s."">Место на карте</a> ';

это писать надо именно в printf ?

Все спасибо разобрался)

Просто проверку сделал перед prinf

Edited by 3d_max_9
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy