|
|
phpBB2 by Przemo
Support forów phpBB2 modified by Przemo
|
|
Generator |
Autor |
Wiadomość |
Aki
Pomógł: 10 razy Posty: 126
|
Wysłany: 08-05-2009, 14:10 Generator
|
|
|
Witam robie generator i mam kod Kod: | <?php
if(isset($_POST['generuj']))
{
print "<textarea cols=\"40\" rows=\"3\" readonly=\"readonly\">";
print "#include <a_samp>
public OnPlayerConnect(playerid)
{
SendClientMessageToAll(".$_POST['kolor']." ,".$_POST['wiadomosc'].");
return 1;
}";
print "</textarea>";
}
else
{
print "<form method=\"post\">";
print "<table>";
print "<tr><td>Wiadomosc: </td><td><input type=\"text\" name=\"wiadomosc\" size=\"25\"/></td></tr>";
print "<tr><td>Kolor: </td><td><input type=\"text\" name=\"kolor\" size=\"25\"/></td></tr>";
print "</table>";
print "<input type=\"submit\" name=\"generuj\" value=\"generuj\"/>";
print "</form>";
}
?> |
Ale wyswietla mi sie wiadomosc
Kod: | #include <a_samp>
public OnPlayerConnect(playerid)
{
SendClientMessageToAll(tekst ,tekst);
return 1;
} |
A prawidlowo chce ustawic tak:
Kod: | #include <a_samp>
public OnPlayerConnect(playerid)
{
SendClientMessageToAll(tekst , "tekst");
return 1;
} |
A jak ustawie Kod: | SendClientMessageToAll( ".$_POST['kolor']." ," ".$_POST['wiadomosc']." "); |
To jest blad |
|
|
|
 |
Gadatliwa Kasia
|
|
|
|
Radek


Pomógł: 955 razy Posty: 4614
|
Wysłany: 08-05-2009, 14:56
|
|
|
Zamien ten kawalek kodu:
Kod: | print "<textarea cols=\"40\" rows=\"3\" readonly=\"readonly\">";
print "#include <a_samp>
public OnPlayerConnect(playerid)
{
SendClientMessageToAll(".$_POST['kolor']." ,".$_POST['wiadomosc'].");
return 1;
}";
print "</textarea>"; |
na:
Kod: | echo '<textarea cols="40" rows="3" readonly="readonly">
#include <a_samp>
public OnPlayerConnect(playerid)
{
SendClientMessageToAll('.$_POST['kolor'].' ,"'.$_POST['wiadomosc'].'");
return 1;
}
</textarea>'; |
|
|
|
|
 |
|
Nie możesz pisać nowych tematów Nie możesz odpowiadać w tematach Nie możesz zmieniać swoich postów Nie możesz usuwać swoich postów Nie możesz głosować w ankietach Nie możesz załączać plików na tym forum Możesz ściągać załączniki na tym forum
|
Dodaj temat do Ulubionych Wersja do druku
|
Kopiowanie wszelkich treści zawartych na forum, modyfikacji oraz instrukcji bez zgody administracji i autorów tematów/postów zabronione!
Powered by phpBB modified by Przemo © 2003 phpBB
|