
zanfranceschi
Members-
Content Count
65 -
Joined
-
Last visited
Community Reputation
0 NeutralAbout zanfranceschi
-
Rank
Newbie
- Birthday 09/27/1979
Contact Methods
-
Website URL
http://www.zanfranceschi.com.br/
-
ICQ
0
Recent Profile Visitors
3,006 profile views
-
Jahangiralomminto started following zanfranceschi
-
It still hepls me.www.php.net is my php reference as w3schools is my css and xhtml reference. Any doubt about css/xhtml I browse here.
-
after unset($array['key']), this isn't counted anymore.
-
if you're really serious about mailing programmes, PHP doesn't recommend the mail() function. They point you to http://pear.php.net/package/MailBut I don't know really what the difference is, i'm just telling you cause i remembered that.
-
---edited---Oops, posted with reportingsjr. I guess his reply is more apropriated. Mine is just a simple copy of a working file.---/edited---I can't parse your code cause I don't know ajax, but I've just tried the w3schools example and it worked ok (the Source part (http://www.w3schools.com/ajax/ajax_source.asp)). <html><head> <script type="text/javascript"> var xmlHttp; function showHint(str) { if(str.length == 0) { document.getElementById("txtHint").innerHTML= ''; return; } xmlHttp=GetXmlHttpObject(); if(xmlHttp==null) { alert("Browser does not sup
-
if you want to send one email at a time, you can do this:// $mail_list is the arrayforeach($mail_list as $mail) mail($mail, $subject, $message);This prevents your mail to be confused with spam. Eventhough it is... hehe
-
I think I know what you want... <html><head> <style type="text/css"> body { text-align: center; } #wrapper { text-align: left; width: 760px; /* This is good for 800 x 600 */ margin: 0 auto; /* The magic */ border: 1px solid #000; /* If you want to see the boundaries */ } </style></head><body> <div id="wrapper"> Hi there! </div></body></html>
-
And a wonderful place to look for is http://www.php.net/I see that justsomeguy always links to www.php.net when posting php functions. I bet he also thinks php.net is one of the best places to learn PHP. There always are examples on how to use functions.
-
if what you want is what pulpfiction wrote, you might want a parent div to nest the three divs under the header for aligning proposes. It's absolutly not necessary, but might be helpful in the future.
-
Thanks a lot!!!I learned new things from you.Didn't know that "*" meant 0 or more and "+" 1 or more. And you used a lot of parenthesis too, so i see it's right to separete pattern groups with ().And why didn't you put the last dots with the last group? Is this just a matter of taste or is there a logic behind it I can't see?Thanks a lot again!!! I see a new world of possibilities with regexpr!!!
-
Do you want one top div plus 3 columns underneath stretching 100% horizontally?
-
<pre><?php$target = "my.e-mail_with_symbols@domain.com.br";$re = "/^([a-z0-9\._\-]*)(@{1})([a-z0-9\._\-]*)(\.[a-z0-9]{1,3})$/i";echo "<b>$re</b> \t\t\t <b>$target</b>\n\n\n";if(preg_match($re, $target, $out)) { echo "<span style=\"color: blue;\">matchs</span>";} else { echo "<span style=\"color: red;\">doesn't match</span>";}echo "\n\n\n\n";print_r($out);?></pre> I just started trying some things with regular expressions, and I found this not to be that difficult, but i'm sure i just understand the basics.If someone who knows r
-
hahahahaI collect freak avatarshttp://www.zanfranceschi.com.br/etc/avatars/
-
<span style="color: red;">word</span>or use <span class="unique-color">word</span> and set unique color in a css file or in the header.
-
the cool thing about your calculator is that when a symbol is pressed the display is cleared. Very cool!
-
Or you can use very simple javascript. onmouseover="this.style.backgroundImage = 'url('.jpg')'; this.style.color = '#000';" onmouseout="this.style.backgroundImage = 'url('...')'; this.style.color = '#666';" Not sure if you use "url" or the image path only.http://www.irt.org/xref/style.htm good list with possibilities