What New Thing Did You Learn Today??
Hello all....
Good Evening...
Here i am creating a thread,
Where you can,
Post what new thing ,you are going to learn today or what new thing ,you learned today....
And also you can post a brief description of that thing and also links about it,or any if you have....That thing may be a program you done,or what you have get by browsing google, any research,or a concept, or a problem, or a application, or a technology, or a good site you have visited, or a good thing you faced today, or anything ......
Then , all of us know what others learn daily....
If we like it, we also do learn that..
Hope it will be use full to all....
Get Start now->->->
Today I read a pdf which is about AJAX...
But i can't attach it here...
and i have visited this site:
http://www.ajax.org/
Thank you all...
shanti...
Shanti C
Posting Virtuoso
1,642 posts since Jul 2008
Reputation Points: 137
Solved Threads: 162
Well, I just learned the little niggley things that have been bother me over the years - forgetfulness, poor attention, restlessness, procrastination, yadda, yadda, are actually symptoms of ADD. What a relief!
GrimJack
Posting Maven
2,920 posts since Feb 2004
Reputation Points: 1,448
Solved Threads: 22
Today I learned that I have diabetes in my right eye. I've had the disease for about 10 years, and this was the first time my eye doctor detected any signs of it in my eye. Guess its about time I stop eating all those pizzas, McDonalds hamburgers, DQ cones and other fast food junk -- I'm a real junky for that too :'(
Ancient Dragon
Retired & Loving It
30,040 posts since Aug 2005
Reputation Points: 5,662
Solved Threads: 2,341
today,im going to research on a topic dynamic image manipulation...means merging of two images with text based on the end users dragged position...
hope i will complete my task today only...
thanks for all the above for give continuation to my thread..
thanks ,
shanti.
Shanti C
Posting Virtuoso
1,642 posts since Jul 2008
Reputation Points: 137
Solved Threads: 162
Just for giggles - I translated the Russian and other licensed Microsoft software
write to e-mail - spam, surprise,surprise
GrimJack
Posting Maven
2,920 posts since Feb 2004
Reputation Points: 1,448
Solved Threads: 22
today i learned and wrote myself with little piece of code upon practicing the session arrays...
here my little code goes:
<?
session_start();
if($_SERVER['REQUEST_METHOD']=='POST')
{
foreach($_POST['checkbox'] as $key=>$val){
echo "key: ". $key. " value: ". $val ."\n";
session_register();
//$_SESSION['checked'] = array();
}
$_SESSION['checked']=$_POST['checkbox'];
foreach ($_SESSION['checked'] as $key=>$value) {
echo 'The value of $_SESSION['."'".$key."'".'] is '."'".$value."'".' ';
}
}
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Untitled Document</title>
</head>
<body>
<form action="" method="post" name="form1">
<table width="100%" border="0">
<tr>
<td><input type="checkbox" name="checkbox[]" value="1">
<input type="checkbox" name="checkbox[]" value="2">
<input type="checkbox" name="checkbox[]" value="3">
<input type="checkbox" name="checkbox[]" value="4">
<input type="checkbox" name="checkbox[]" value="5"> </td>
</tr>
<tr>
<td><input type="submit" name="button" value="GO!">
</td>
</tr>
</table>
</form>
</body>
</html>
Shanti C
Posting Virtuoso
1,642 posts since Jul 2008
Reputation Points: 137
Solved Threads: 162
today i learned that thinking :-/ is such a waste of time because it took 2 hours to me thinking what to do next after watching ajax tutorials videos
Some times thinking will result in good ideas even they took more time...
And start practice on ajax programming..Its very interesting..
Go ahead my dear kid....
Shanti C
Posting Virtuoso
1,642 posts since Jul 2008
Reputation Points: 137
Solved Threads: 162
Today, I learned that ADD and the web are a bad combination.
On the other hand check out these 2 sites for laptop protection:
JustStolen.com
Adeonis , sort of a LoJack for laptops.
GrimJack
Posting Maven
2,920 posts since Feb 2004
Reputation Points: 1,448
Solved Threads: 22
Shanti C
Posting Virtuoso
1,642 posts since Jul 2008
Reputation Points: 137
Solved Threads: 162
going to learn about implode and explode functions clearly...and also coding.....
Shanti C
Posting Virtuoso
1,642 posts since Jul 2008
Reputation Points: 137
Solved Threads: 162
now i learn that i must go to bed now ,almost after 15 hrs with my notebook.
debasisdas
Posting Genius
6,865 posts since Feb 2007
Reputation Points: 666
Solved Threads: 434
I learned that fighting ignorance is a full time job.
GrimJack
Posting Maven
2,920 posts since Feb 2004
Reputation Points: 1,448
Solved Threads: 22
validation of an url..
got from google search..
var theurl=document.formaddad.url.value;
var tomatch= /http:\/\/[A-Za-z0-9\.-]{3,}\.[A-Za-z]{3}/
if (!tomatch.test(theurl))
{
window.alert("URL invalid..See the example giving beside the textbox.");
a.url.focus();
return false;
}
Shanti C
Posting Virtuoso
1,642 posts since Jul 2008
Reputation Points: 137
Solved Threads: 162