Wednesday, November 7, 2007
You tube video: PHP Tutorial // User Registration with mySQL
i picked up this video from you tube it's from the series of the last video. take a look and watch how to make a login form in PHP and myswql my favorite language:).
Tuesday, September 25, 2007
PHP Function: Keyword Extract
let's go deeply and explore this function:
- download this zip file that contain the script.
- you can edit it with any PHP editor you want, for me i use notepad++ or PHP designer 2007.
- open the file with the editor:
- you will find a comment block telling you how to use this script. for us we will talk about how it works.
- the name of our function is "keyword_extract" it takes a variable $text that contain the text you want to extract keywords from it.
- First line is used to convert the text lowercase state.
- the 2 next lines declare a string that contain all punctuations and explode them using the explode function.
- a foreach loop used to replace each punctuation exploded before with a space character so it will not affect the result.
- declare a $commonWords variable that contain all the common words like "that,this,.." that we will not use in keywords.
- than a block of code used to compare the words available in the text to the common words if it's one of it it will not be counted and will be dumped. if it's not a common word it will be counted.
- each word that is counted more than 3 times, it will be used as a keyword, in the $keyword array.
- from line 89 to line 97:
- first line declare an array and give it array_count_values($keywords) that will take a count for each word in the keywords array.
- arsort($keywords): will sort the array with the index next to it. (count)
- foreach loop will output the result in a clear format. each keyword repeated more than 3 times, will be counted as keyword.
- the output give you the ability to show each keyword how much is repeated in GOOGLE and wordpot.
so be happy and enjoy the script :)
download here
http://www.ziddu.com/download/3537305/keyword_extract.zip.html
Tuesday, September 4, 2007
STATISTICS of developpers blog for AUGUST 2007
i will show you statistics from the birth of Developpers Blog (February 2007) till August.
This is the map overlay showing the visitors distribution around the world
Friday, August 31, 2007
FREE TOOL: STAY CONNECTED - ACCELERATE YOUR SEARCH
it 100% free no spam no malware, it's developed by conduit.com and customized by me.
this is list of DOES NOT:
DOES NOT spy on your browsing habits.
DOES NOT launch pop-up or pop-under advertisements. Our business model is based on displaying sponsored links on search results pages (advertisers pay per click, not per appearance).
DOES NOT "hijack" your searches.
DOES NOT modify pages you visit.
DOES NOT block uninstallation. Our toolbar can be removed in seconds by using a standard uninstaller.
DOES NOT create security holes: The toolbar will not make it easier for other people or programs to access your computer.
DOES NOT and will not sell or rent your email address and other personal information.
it' has:
- popup blocker
- weather report for the city you live in
- email notifier
- search the web, or Developpers blog
- RSS reader for Developpers blog and Yahoo technology news
- and much more....
whay this toolbar?!
it's helps you stay connected with our news and posts.
come now and download it from here or from banner that said "ACCELERATE YOUR SEARCH" the right side panel of the blog
Thursday, August 16, 2007
STATTISTICS of Developpers Blog from FEB 2007 - JUL 2007
Tuesday, August 14, 2007
Monday, August 6, 2007
PHP Designer 2007 - incredible tool for web developement
it's been a long time since last post, but i was too busy at my work, i have just finished the project i was working on.. i will post the link of the website soon....
so today i brought to you a very helpful tool.
PHP Designer 2007
as the name said: PHP designer.
if you want to develop a web page using PHP server technology. i think you will find difficulty using notepad, or frontpage even the last version of it, since these tools don't include an IDE for PHP.
but PHP designer has the solution.. it has an IDE for PHP, CSS, HTML... you will not need another tool or software beside it, maybe you will find difficulty to draw tables in it. but it has it's own tools. you should make a try.
you can visit the site to buy it.
Monday, June 25, 2007
NOTEPAD++ a cool tool for developers
today i brought to you a free open source tool for developers. it's compatible with all developing languages.
it's:
- lite
- very easy to use
- clean
- very helpful
- takes low resources from memory
- and have all API for programing languages.
this tool is designed and developed by notepad-plus.sourceforge.net
to download it click here:
Download Page
Saturday, June 16, 2007
PHP and mysql databse episode I
Hi again, sorry for the delay for blogging code especially in this very lovely language. PHP..
So every beginner in php want to know how he can connect to a mysql server and retrieve data from the database and present it in his webpage.
In this lesson I will present the first portion of this ..
HOW to connect to the database.
Before you copy the code.. you have to know that the code below needs to have some changes before that can work correctly..
So you have to change the values of the variables (connection parameters: servername, databasename, user, password)..
After running the script you will got a message saying that the connection has been attempted..
If you got anything else, then you have an error somewhere. If you need my help, comment out here. And I will help soon..
//this code is presented by Developpers Blog.. Http://developpers.blogspot.com
//it's this very simple way to connect to a database
//all what you need is to change the variables values with correct values.
//list of variables, you may need to change the values between quotations
$host = "localhost";
$database = "mydatabase";
$user = "user";
$pass = "password";
//try to keep this lines without changes, only if you know what you are doing.
//you can change the text between quotation if you want
$conn = mysql_connect($host,$user,$pass) or
die(mysql_error());
if ($conn){
$selectdb = mysql_select_db($databse);
if($selectdb){
echo "Connection attempted";
}
else{
echo"Can't connect to the databse. please contact the system administrator.";
}
}
else{
echo "Can't connect to the server..please contact the system administrator.";
}
?>
you can download the .php file from these links below:
Download link 1
Download link 2
Wednesday, June 6, 2007
WINDOWS BLUE SCREEN EPISODE II … VISTA
but this time is with windows vista .. WOWWW
watch it it's funny..
Monday, June 4, 2007
Bill Gates And WinME ... BLUE SCREEN!!!!!!
whatch it you will laugh:))
so what do you think??;)
Wednesday, April 25, 2007
ionFiles Arabic (download manager) Joomla component
you can find the original component at these links:
joomla extensions ionFiles
component site
and if you want an arabic version, i translated it and make simple modifications:
ionFiles.zip
wish you will like. for me i love it :)
Monday, April 2, 2007
Google the number 1 best place to work!!!
Friday, March 30, 2007
World's Smallest Windows PC by OQO
by PODtech.com
iPhone: Product of the Year?
From www.podtech.net
Wednesday, March 7, 2007
VBA code: how to insert a value in a combo box that is not in list?!!
every beginners access developers have a problem when they want to insert a new value in a combo box. that is created by "lookup wizard" or it's a foreign key and contain bound column that is generally number (hidden one) and a second column that usually a text (visible one).
so when u try to insert a new value. you will got this horrible message:
do you remember itt??!!
now this is your solution:
1- go to the properties of the combobox in design view..
2- click on the events tab..
3- and double click On Not in List.
4- you will go to the VB window.
5- insert this code:
Dim strSQL As String
Dim i As Integer
Dim Msg As String
'Exit this sub if the combo box is cleared
If NewData = "" Then Exit Sub
'msg will apppear to the user asking him what he want to do?
'change the text if you want.
Msg = "'" & NewData & "' is not currently in the list." & vbCr & vbCr
Msg = Msg & "Do you want to add it?"
i = MsgBox(Msg, vbQuestion + vbYesNo, "Unknown Book Category...")
If i = vbYes Then
'Change the "table" and the "field" in strSQL
strSQL = "Insert Into table([field]) " & _
"values (' " & NewData & " ');"
CurrentDb.Execute strSQL, dbFailOnError
Response = acDataErrAdded
Else
Response = acDataErrContinue
End If
Wednesday, February 21, 2007
Tuesday, February 13, 2007
Subnet calculator
it's subnet calculator u can use it for your network usage:
click on this link you can add it to your site
if you like to preview it scroll down to the bottom of this page yyou will find a sample
it's cool ye?!
let's take a break and watch this funny video!!:)
it's really very funny. see what will hapen with this couple :)
:)
javascript tutorial:Building a Minesweeper-type game
let's do it guys try it and tell me what you think
just follow the link:
Minesweeper-type game
Friday, February 9, 2007
Google Analytics
i am realy impressed about Google Analytics.
it 's realy helpful for your site.
Try it if you have a website and you need to track your visitors:
What is Google Analytics, wel this block is from Google Analytics home page:
for more info go to your google account and press Analytics.
Google Analytics tells you everything you want to know about how your visitors found you and how they interact with your site. Focus your marketing resources on campaigns and initiatives that deliver ROI, and improve your site to convert more visitors.
Thursday, February 8, 2007
code javascript: Bookmark Us
try it it's very helpful
It's text File just copy and edit the following the instructions in the file:
javascript_bookmarkus.txt
Make your comment To Improve
Developpers Blog will thank you for your comments and experience that you will share with us after commenting on my posts.
Best regards
Tuesday, February 6, 2007
Welcome to Developpers Blog
i hope that Developpers Blog will help you.
keep in visit us.