Learn how to Make Money Online | Free Tech Magazines
Go4Expert
Go4Expert RSS Feed

Go Back   Programming and SEO Forum >  Go4Expert > Articles / Source Code > Web Development

Post New Thread  Submit New Article Copy HTML to Clipboard  Copy BBCode to Clipboard  Add to del.icio.us  Add to Google  Digg it  Add to Yahoo !  Add to Windows Live  Add to Facebook  Add to StumbleUpon 
Tutorials and Source Code in : PHP Bookmarks Forum Tools Search this Forum
Announcement
Views: 11,611 View Announcement Announcement: Rules for Duplicate Article Submission
10-08-2008 shabbir (Go4Expert Founder)
  Rating Article / Author Last Post Reverse Sort Order Replies Views
 
shabbir
This is a very simple code and hardly requires any explanations. :eek: If you need any put the post here. functions.php <?php function createsessions($username,$password) { //Add additional member to Session array as per requirement session_register();
11-12-2009 05:50 PM
by JV2010 Go to last post
87 33,163
 
pradeep
If you want to validate a form without submitting it, you can use two methods, one is pure client side JavaScript and the other being a mix of JavaScript and server-side scripting which can be PHP,ASP.JSP,Perl or anything for that matter. First I will give an example of pure JavaScript...
09-08-2009 01:49 AM
by nwndm Go to last post
18 63,152
Cool
pradeep
The in-built array functions allow you to interact with and manipulate arrays in various ways. Arrays are essential for storing, managing, and operating on sets of variables. Simple and multi-dimensional arrays are supported, and may be either user created or created by another function. There...
09-07-2009 06:21 PM
by lrvv Go to last post
7 4,002
Cool
pradeep
Introduction XOR encryption is a trivially simple symmetric cipher which is used in many applications where security is not a defined requirement.Exclusive-OR encryption, while not a public-key system such as RSA, is almost unbreakable through brute force methods. It is susceptible to...
08-07-2009 09:56 PM
by cignusweb Go to last post
5 6,426
Thumbs up
pradeep
Here's the code to read ID3 tage from a MP3 file <?php //Reads ID3v1 from a MP3 file and displays it $mp3 = "1.mp3"; //MP3 file to be read
08-06-2009 10:42 AM
by danwoods Go to last post
8 18,601
Talking
pradeep
While working with currency calculations, we often require to round a number to the nearest 10 or the nearest 50, like 407 should be 410. I've written a function which will do exactly that, it requires two parameters the number to the round, and the integer to be rounded to. The function is like...
07-24-2009 11:01 AM
by LenoxFinlay Go to last post
1 6,312
Cool
pradeep
Introduction ROT13 ("rotate by 13 places", sometimes hyphenated ROT-13) is a simple Caesar cipher used in online forums as a means of hiding spoilers, punchlines, puzzle solutions, and offensive materials from the casual glance. ROT13 has been described as the "Usenet equivalent of a...
07-24-2009 10:58 AM
by LenoxFinlay Go to last post
2 4,618
Exclamation
Thread Rating: 1 votes, 5.00 average. pradeep
Recently, an obscure detail in the way PHP processes strings came to my attention. This is processed by code that checks for simple lists (like 1. blah 2. blah, or - blah - blah, etc.). However, an innocent call to in_array($x, array('1.', '0.')) had surprising and unexpected results: our...
07-24-2009 10:55 AM
by LenoxFinlay Go to last post
1 4,204
Talking
pradeep
Introduction The RGB color model is an additive model in which red, green, and blue (often used in additive light models) are combined in various ways to reproduce other colors. The name of the model and the abbreviation ‘RGB’ come from the three primary colors, red, green, and blue and the...
07-22-2009 03:59 PM
by LenoxFinlay Go to last post
2 8,458
Post
Mary
Introduction Sometimes you just need to know what country your site visitors are coming from - for example, if you're trying to implement geo-targeted advertising. This article will show you how. Sometimes you just need to know what country your site visitors are coming from - for example, if...
07-22-2009 03:51 PM
by LenoxFinlay Go to last post
22 17,062
 
o0darkEvil0o
This Code let you take a image search on Google easily and user-friendly. You can pre-specify image properties: image name or caption, size and dimension rank of image. Code Here: <?php session_start(); $_SESSION=0; ?> <link href="../../client/style.css" rel="stylesheet" type="text/css">
07-03-2009 03:48 PM
by gkumar Go to last post
13 6,585
Thumbs up
extraweb
password.class.php <?php /* * Simple password generator define ('PC_MINUS', 0x01); define ('PC_CAPITAL', 0x02); define ('PC_NUMBERS', 0x04); define ('PC_SPACES', 0x08);
06-30-2009 04:14 PM
by gkumar Go to last post
5 2,431
Lightbulb
Mary
Introduction PHP comes with an extensive catalog of date and time functions, all designed to let you easily retrieve temporal information, massage it into a format you require, and either use it in a calculation or display it to the user. However, if you'd like to do something more complicated,...
06-26-2009 03:55 PM
by gkumar Go to last post
5 10,221
 
shabbir
Many websites generate temporary password or some generate the Activiation code for verification of email. They send the mail with that code in it and so If you wonder how they do this here is a function to do this. Input : - Length of the Random string you wish to generate Output :- Random...
06-26-2009 03:46 PM
by gkumar Go to last post
6 3,219
Cool
pradeep
I was wondering whether i could read the size of a directory using PHP. So i thought of making something which could help me read the size of the directory ,no. of directories and the no. of files in the given diretory. The function "getDirectorySize" will ignore link/shorcuts to files/directory....
06-20-2009 07:14 PM
by gkumar Go to last post
5 19,432
Talking
pradeep
Say if you want to generate graph on your website using data from a data base, you might be wondering how to go about it. Well the best way I would do it is use free PHP GD library. Here is a class i wrote to generate a graph in a PNG image for me. class BarGraph { var $barWidth; var...
06-18-2009 04:15 PM
by gkumar Go to last post
3 15,346
 
Sanskruti
Repetitive tasks are always a burden to us. Deleting spam email, sealing 50 envelopes, and going to work are all examples of tasks that are repeated. The nice thing about programming is that you can avoid such repetitive tasks with a little bit of extra thinking. Most often these repetitive tasks...
06-18-2009 03:47 PM
by gkumar Go to last post
2 2,207
 
Sanskruti
A trend with a lot of new Web Designers is to blindly go for ASP or JSP for creating dynamic and interactive websites. Why use PHP for server-side scripting? This question comes in mind of a lot of Web Designers, especially in mind of designers/programmers who are only exposed to much hyped server...
06-17-2009 05:06 PM
by gkumar Go to last post
4 4,003
Thumbs up
Thread Rating: 1 votes, 5.00 average. hurricanesoftwares
I am listing tips to improve your PHP code performance. There are few whom you can call as debatable but overall the code performance will surely increase. Following tips are written to save time and development cost (includes memory too) If a method can be static, declare it static. Speed...
06-17-2009 04:54 PM
by gkumar Go to last post
12 8,717
 
Kings
PHP can be used for a lot of different things, and is one of the most powerful scripting languages available on the web. Not to mention it's extremely cheap and widely used. However, one thing that PHP is lacking, and in fact most scripting languages are, is a way to update pages in real-time,...
05-01-2008 12:28 PM
by shabbir Go to last post
5 7,047
Post New Thread  Submit New Article Copy HTML to Clipboard  Copy BBCode to Clipboard  Add to del.icio.us  Add to Google  Digg it  Add to Yahoo !  Add to Windows Live  Add to Facebook  Add to StumbleUpon 

Display Options Currently Active Users
Showing articles 1 to 20 of 72 4 (0 members & 4 guests)
 
Forum Tools Search this Forum
Search this Forum :

Advanced Search
Bookmarks

New comments New comments More than 15 replies or 150 views Hot articles with new comments
No new comments No new comments More than 15 replies or 150 views Hot article with no new comments
Closed Thread Article is closed  
 
Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump
 

All times are GMT +5.5. The time now is 03:58 AM.