GarryOne Posted July 16, 2011 Report Share Posted July 16, 2011 Fac un site pentru un prieten care e Dj, aici o sa-si bage mix-urile, radio etc.Astepti comentarii, pareri, critici, privind design-ul, culorile, asezarea in pagina etc.DjPuma: Asculta cele mai tari piese,Mix-uri Quote Link to comment Share on other sites More sharing options...
Robert1995 Posted July 16, 2011 Report Share Posted July 16, 2011 (edited) Inainte sa postezi un raspuns tampit ca fac offtopic gandestete ca vreau doar sa te ajut.Deci ai putea face codul mai ordonat. Cu doar putin CSS poti face sa arate foarte bine.Inca un sfat ai putea schimba la formDinYour Name.:<input type="text" maxlength="40" size="18" name="nume"><br>Your e-mail:<input type="text" maxlength="58" size="18" name="email"><br>Subject:<input type="text" maxlength="70" size="28" name="subiect"><br><br>Type message: (<i>max 500 chars</i>)<br><textarea rows="6" cols="35" name="mesaj"></textarea><br>1536<br>Type captcha's chars:<input type="text" maxlength="4" size="5" value="" name="anti_spam"><br><input type="submit" name="submit" value="Send">Ar putea fi elegant <p class="input_row"><label>Your Name.:</label><input type="text" maxlength="40" size="18" name="nume"></p><p class="input_row"><label>Your e-mail:</label><input type="text" maxlength="58" size="18" name="email"></p><p class="input_row"><label>Subject:</label><input type="text" maxlength="70" size="28" name="subiect"></p><p>Type message: (<i>max 500 chars</i>)</p><textarea rows="6" cols="35" name="mesaj"></textarea><p class="captcha_code">1536</p><p class="input_row"><label>Type captcha's chars:</label><input type="text" maxlength="4" size="5" value="" name="anti_spam"></p><input type="submit" name="submit" value="Send">Edit dupa 2 minute am uitat sa-ti spun<br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br />Urat , fa doua divuri , in unul din ele pune width sa impingi in jos pagina credca asta ai vrut sa faci. In 1998 credca era corect cum ai facut tu,dar acum e altceva Edited July 16, 2011 by Robert1995 Quote Link to comment Share on other sites More sharing options...
p3tru Posted July 16, 2011 Report Share Posted July 16, 2011 Fiind vorba de melodii de club, as sugera niste culori mai inchise, sa iti dau niste exemple:http://t0.gstatic.com/images?q=tbn:ANd9GcQEnt0gKTVfJrhN89a8UHYd5dvowo_qq6OzJps0q_qCg5oY17TC&t=1http://www.poweredtemplates.com/_src_web/00245/1.jpghttp://www.5shadestemplates.com/screenshots/23900/23977-wp-b.jpghttp://wordpresstemplates.name/wp-content/uploads/2007/11/screenshot.jpghttp://www.templatemonsterfree.com/wp-content/uploads/2011/01/free-html5-music-template-psd.jpg Quote Link to comment Share on other sites More sharing options...
cmiN Posted July 16, 2011 Report Share Posted July 16, 2011 Nu, arata ca dracu butoanele alea .. nu se potrivesc deloc cu retroul de mai sus nici ca forma, design nimic. Quote Link to comment Share on other sites More sharing options...
Addic73d Posted July 19, 2011 Report Share Posted July 19, 2011 interesant captcha uite un codul pentru captcha daca te gandesti vreodata sa-l schimbi pe al tau: captcha.php<?php session_start(); //imagecreatefrompng :: create a new image //from file or URL$img = imagecreatefrompng('poze/black.png'); //displaying the random text on the captcha $numere = rand(100, 999); $_SESSION['check'] = ($numere); //The function imagecolorallocate creates a //color using RGB (red,green,blue) format.$white = imagecolorallocate($img, 255, 255, 255); imagestring($img, 10, 8, 3, $numere, $white);header ("Content-type: image/png"); imagepng($img); ?>ai nevoie de o poza, in cazul nostru black.png de circa 40 x 20 care sa reprezinte background-ul ..si verificare codului captcha:if(($_POST['check']) == $_SESSION['check']) {echo 'Trimite mesaj w/e';}unde $_POST['check'] este ceea ce introduce utilizatorul si $_SESSION['check'] este sesiunea definita in captcha.php similara cu numarul de pe imagine.Este si un tutorial pe net cu acelasi exemplu de unde m-am inspirat si eu, numai ca asta e putin mai simplificat. Acum sper ca nu te-a deranjat raspunsul asta, insa ceea ce ai tu pe site nu aduce a captcha.Bafta Quote Link to comment Share on other sites More sharing options...