Jump to content
php.lv forumi

echo ka lai iebāž


Vo1The

Recommended Posts

Tātad man velviens jautājums kā lai iedbū te echo iekšā tā lai viņš uz manim nelamājās

 

if($row[2] == "4") {$gp = ROOT; }

Gribu lai kad nodefinē GP var ielikt font krāsas ! Katrai grupai savu

Respektīvi kaut kā šādi bet viņš lamājās !

if($row[2] == "4") {$gp = echo '<font color="blue">ROOT<font>'; }

 

atkārtošu velreiz php tikai mācos !Tādēļ neko nepārmetiet ja jums tas liekas vienkārši.

Sintaksi vel īsti tā neizprotu tās pēdiņas un kā tur tā nja !

Edited by Vo1The
Link to comment
Share on other sites

Viens ir tas, kas Tev ir definēts iekš ROOT?

Ja nesaprati jautājumu, pārskati, vai Tev ir izmantots, un vai vispār ir vajadzīgs http://php.net/manual/en/function.define.php

 

Ja gribi katram $row[$x] definēt savu krāsu, tad ieteiktu šādi:

 

switch $row[$x] {
   default:
   case $x = 1:
       echo "<p style=\"color: red\">teksts</p>";
   break;
   case $x = 2:
       echo "<p style=\"color: green\">teksts</p>";
   break;
   case $x = 3:
       echo "<p style=\"color: blue\">teksts</p>";
   break;
}

Link to comment
Share on other sites

Ar rakstīšanas metodi varētu pietikt ((:

if($row[2] == "4") {$gp = '<font color="blue">ROOT<font>'; echo $gp; }

 

vai vienkārši

echo  '<font color="blue">ROOT<font>'; 

ja nedomā viņu vairāk nekur izmantot

Paldies pirmais variants nostrādāja par to nemaz neidomājos no sākuma vienīgi beigās

echo $gp;

Bija jānoņem citādi sanāk 2 reiz ! Paldies

Link to comment
Share on other sites

Respektīvi kaut kā šādi bet viņš lamājās !

if($row[2] == "4") {$gp = echo '<font color="blue">ROOT<font>'; }

Padomaa logiksi !!

$gp ir vienads ar IZVADIT uz ekrana xxx tekstu !!

'=' noziimee Pieskjirsanas OPERATORS 'echo' izvadisanas operators

2 operatori pec kartas Nedrikst buut !!!

sakuma pieskjir miniigajm vertibu un talak jau vari darboties izvadiit/apstradaat etc.

Edited by Grey_Wolf
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.

Guest
Reply to this topic...

×   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.

Loading...
×
×
  • Create New...