Posts

Showing posts from 2007

You tube video: PHP Tutorial // User Registration with mySQL

Hi again, and sorry for this long delay since last post last video about PHP tutorial, but i was too busy.. 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:).

You tube video: PHP Tutorial // User Registration with mySQL

PHP Function: Keyword Extract

Image
This is a great little php utility function is great for bloggers or for anyone looking to increase the keyword density on a site. The keyword extract function searches through a text string filtering out punctuation and common words to return a list of your most commonly used words. Links are then generated to search for these keyword possibilities on Google and to get keyword suggestions from Wordpot. 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 ...

STATISTICS of developpers blog for AUGUST 2007

Image
Hi again. 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

FREE TOOL: STAY CONNECTED - ACCELERATE YOUR SEARCH

Image
hi, i am happy to announce you the launch of DEVELOPPERS BLOG TOOLBAR... 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.... w...

STATTISTICS of Developpers Blog from FEB 2007 - JUL 2007

Image
Hi again. Well i have to busy to make these kind of post but from now on i will make monthly statistics of Developpers Blog. For now i will show you statistics from the birth of Developpers Blog (February 2007) till last month.

How to make a CD cover from paper

Image
If you ever get stuck without a cd cover, all you need is an A4 piece of paper and you're set.

PHP Designer 2007 - incredible tool for web developement

Image
Hi again, 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.

NOTEPAD++ a cool tool for developers

Image
hi again.. 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

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 val...

WINDOWS BLUE SCREEN EPISODE II … VISTA

That’s just for fun.. it’s a remake of the previous video.. but this time is with windows vista .. WOWWW watch it it's funny..

Bill Gates And WinME ... BLUE SCREEN!!!!!!

hi i know this an old video but i think it's old.. but it's nice to bookmart it. whatch it you will laugh:)) so what do you think??;)

ionFiles Arabic (download manager) Joomla component

Hi, i was searching the joomla components for a download manager for my site. i found this component it's realy very simple and very clean in front of other download managers for joomla. i recommend it for simple sites. i didn't try it for big downloads. 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: http://www.ziddu.com/download/3577660/ionFiles-4.4.2.zip.html">ionFiles.zip wish you will like. for me i love it :)

Google the number 1 best place to work!!!

watch this i am sure you will love to work at this company.. or maybe you wish that your company treat its employees like Google... or if it's hard dream maybe someday you will have a company and try to do like Google.. :)

World's Smallest Windows PC by OQO

Irina Slutsky and Eddie Codel stop by the San Francisco offices of OQO, makers of the smallest Windows Vista capable PC. Nick Merz, director of design and a founder of OQO, shows us the new model 02 which was just released at CES last week. Weighing in at one pound, OQO's model 02 packs a knockout set of features for the urban road warrior or mobile business executive. We've seen the future and it is a high performance PC that fits in the palm of your hand and keeps you connected anywhere. by PODtech.com

iPhone: Product of the Year?

Apple CEO Steve Jobs delivered one of his most dazzling MacWorld keynotes as he unveiled Apple's new iPhone. The device uses a patented touch screen system called multi-touch. Cisco, which owns the iPhone name, says it expects to close a deal with Apple on some sort of trademark royalty for the moniker. In this podcast Jobs introduces the device, which is combination of iPod, phone and Internet device. Price points are $499 for a 4 gig model and $599 for an 8 gig. From www.podtech.net

VBA code: how to insert a value in a combo box that is not in list?!!

Image
hi. 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 i...

Alrayya Store Opening

Hi Your welcome to visit my store at FSC store club. you can find useful stuff there try it.. SEEE ITT

Subnet calculator

hi guys.. i found this gadget at google gadget 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!!:)

let's take a break and watch this video .. it's really very funny. see what will hapen with this couple :) :)  

javascript tutorial:Building a Minesweeper-type game

i found it a website and i liked the idea. i think you will like it, i didn't try it yet. let's do it guys try it and tell me what you think just follow the link: Minesweeper-type game

Google Analytics

 Did you try it? 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: 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. for more info go to your google account and press  Analytics.

code javascript: Bookmark Us

this is code i used it to make bookmark us link: 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

Welcome again. Developpers Blog will thank you for your comments and experience that you will share with us after commenting on my posts. Best regards

Welcome to Developpers Blog

Developpers Blog is a new blog site that i will try to make it helpful for all developpers to find what they need. i hope that Developpers Blog will help you. keep in visit us.