alexer13
Active Members-
Posts
135 -
Joined
-
Last visited
Recent Profile Visitors
The recent visitors block is disabled and is not being shown to other users.
alexer13's Achievements
Newbie (1/14)
12
Reputation
-
so treaba arata asa : HTML CSS Aici am improvizat destul de mult.. Iar eu vreau ca in panou 2 sa pun unele icoane cu linkuri externe.
-
Am o clasa comuna pentru panouri in care vreau sa pot introduce linkuri, insa divul este absolut. Cum pot introduce in acest div linkuri ? .continut-panou-2{ width: 226px; height: 90px; background-color:#f3f3f3; border-radius: 10px; margin-top: 30px; position:absolute; left:209px; top:1200px; z-index:-1; box-shadow: 0 0 2px #888; } html.. <div class="continut-panou-2"><br> <span onmouseout="this.style.opacity=0.3;this.filters.alpha.opacity=30" onmouseover="this.style.opacity=1;this.filters.alpha.opacity=10" style="opacity: 0.3;"> <a href="ymsgr:SendIM?idmess" class="continut-panou-2"><img src="resurse/yahoo-soc.png" class="stanga" title="Yahoo" width="40" height="40"/></a> </span> </div>
-
12.21.2012 11:11 Expect Us. Project Mayhem 2012: The End of Fear. #pm2012 Din cate am inteles pe 21.12.2012 se vor oferi multe informatii.. ascunse pana in acest moment. Daca! si cum.. ramane de vazut..
-
Cum se numeste softul pentru SE cu care pot bloca anumite numere pe langa cele private ? //inafara de optiunea din setari.
-
am un sagem myx511x codat in orange si as dori sa-l decodez fara sa mai dau si alti bani pe el.. daca ma puteti ajuta cu vreun soft.
-
WP - ajuta foarte mult seo!
-
Am vorbit cu cei de la host. nu este de la ei.. la o mica verificare pe goagal am gasit: DealDropDown - Uninstall Information - hostul va asgiur eu ca este de calitate
-
Cum pot realiza cel mai usor un astfel de panou: am incercat cu : /* =============== Panou - Noutati ================== */ .ere{ margin-top: -227px; float:right; width: 270px; display:block; } .ultimele_noutati{ position:relative; width: 250px; height: 235px; margin-left: 5px; background-color:#fff; border: 1px solid #d8d8d8; } #noutate { border-bottom: 1px solid #d8d8d8; border-top: 1px solid #d8d8d8; background-color: #f2f2f2; width:250px; height: 47px; position:absolute; margin-top: 5px; } #noutate img{ margin-top: 3px; border: 4px solid #fff; width: 20%; margin-left: 15px; } #noutate .zona_text{ position:absolute; float:left; margin-top: 0px; width:166px; height: 30px; } #noutate .zona_text_data{ position:absolute; margin-top:15px; margin-left: 61px; color:#909090; } HTML <div class="ere"> <div class="ultimele_noutati"> <hr><h2 class="titlu_panouri"> Ultimele noutati </h2> <div id="noutate"> <img class="stanga" src="resurse/imagini/elevi-liceu.gif"> <a href="#" class="zona_text"> Schimbare de orar in liceu</a> <br> <p class="zona_text_data"> 13 OCT </p> </div> <br><br><br><br> <div id="noutate" class="2"> <img class="stanga" src="resurse/imagini/elevi-liceu.gif"> <a href="#" class="zona_text"> Schimbare de orar in liceu</a> <br> <p class="zona_text_data"> 13 OCT </p> </div> <br><br><br><br> <div id="noutate" class="2"> <img class="stanga" src="resurse/imagini/elevi-liceu.gif"> <a href="#" class="zona_text"> Schimbare de orar in liceu</a> <br> <p class="zona_text_data"> 13 OCT </p> </div> </div> </div> Nu e o metoda corecta.. stiu asta.. va intreb cum ar fi trebuie sa fac ca doar prin repetarea codului uneia dintre noutati sa se aseze sub ea ..[ sa nu mai pun eu acele br-ùri.. ]
-
in ce zona il pot introduce ? // Warning: fwrite() expects parameter 2 to be string, array given in C:\xampp\htdocs\comanda\trimite.php on line 80 Momentan nu pot fi trimise comenzi. Nu pot scrie in fisier.
-
am urmatorul cod php <?php // Scrie data si ora in fisierul cu dedicatii. $luna = array("","Ianuarie","Februarie","Martie","Aprilie","Mai","Iunie","Iulie","August","Septembrie","Octombrie","Noiembrie","Decembrie"); $data = '<b>Data si ora:</b> '.date("d ",time()).$luna[date("n",time())].date(" Y, H:i", time()).'<br />'; // Get the data from the 'nume' field of the form. $data = $data.'<b>Nume Prenume:</b> '.htmlentities($_POST['nume']).'<br />'; // Get the data from the 'telefon' field of the form. $data = $data.'<b>Telefon:</b> '.htmlentities($_POST['telefon']).'<br />'; // Get the data from the 'oras' field of the form. $data = $data.'<b>Oras:</b> '.htmlentities($_POST['oras']).'<br />'; // Get the data from the 'produs' field of the form. $data = $data.'<b>Produs:</b> '.htmlentities($_POST['produs']).'<br />'; // Get the data from the 'sugestii' field of the form. $data = $data.'<b>Comentarii/sugestii:</b>'.''.htmlentities($_POST['sugestii']).'<br />'; // Adresa IP $ip = $_SERVER['REMOTE_ADDR']; if (strstr($ip, ",")) { $ipuri = explode(", ", $ip); $ip = $ipuri[0]; } else { $ip = $_SERVER['REMOTE_ADDR']; } $data = $data.'<b>Adresa IP: </b>'.''.$ip.'<hr />'; // $email is detecting if the 'nume' field is empty. $name = htmlentities($_POST['nume']); // $message is detecting if $spam words are in the 'mesaj' field. $message = htmlentities($_POST['telefon']); // Specifications of the "bad words", spam, in the 'mesaj' field. $spam = "/(pula|pizda|coaie|muie|curva|fut|cacat)/i"; if (empty($name)) { echo ('<br /><br /><center><body bgcolor=#FFFFFF " background="bgsite.gif"><img src=tabel.png></center>'); } else { // Detects the $spam word and displays it in the warning. if(preg_match($spam,$message,$matches)) { echo ('<br /><br /><center><body bgcolor="#FFFFFF" background="bgsite.gif"><img src=vulgar.png></center>'); } elseif(preg_match($spam,$name,$matches)) { echo ('<br /><br /><center><body bgcolor="#FFFFFF" background="bgsite.gif"><img src=vulgar.png></center>'); } else { // The file to write $data to (don't forget to CHMOD it to 777 or rwx-rwx-rwx). $file = "dedicatii.txt"; if (!$file_handle = fopen($file, "a+")) { echo "Momentan nu pot fi trimise comenzi. Nu pot deschide fisierul."; } if (!fwrite($file_handle, $data)) { echo "Momentan nu pot fi trimise comenzi. Nu pot scrie in fisier."; } fclose($file_handle); echo ('<br /><br /><center><body bgcolor="" background="bgsite.gif"><img src=trimis.png></center>'); echo ('<meta http-equiv="Refresh" content="4;url=comanda.php" />'); } } ?> si as vrea sa fac mai multe campuri obligatorii.. in ce linie si cum mai exact pot modifica acest aspect
-
Am un site html/css la care am lucrat pe localhost. Cand l-am urcat pe host pe una din pagini la cuvantul hote mi-a aparut aceasta reclama. De la ce poate fii ? Cum pot scapa de ea ? // Singurul lucru care nu este facut de mine este o galerie descarcata de pe internet [ un fel de slideshow. ]
-
am gasit si eu ceva cu: Daca mai are cineva nevoie.
-
Vreau sa pun unele imagini pe site cu un efect pe care nu-l mai gasesc.. este vorba cel cu gray [imaginea este "alb-negru" iar img:hover sa aiva din nou culoare ] Am gasit pe net insa cu CSS3 iar pe mine ma intereseaza un CSS2 sa nu am probleme cu IE. // scuze de titlu am probleme cu chrome care vrea sa completeze el tot..
-
She makes me? feel like a man - Cliff Richard