Hi there!
I have some HTML/CSS Website that I have converted to a WordPress template. Here are the templates try it!
Try it, its Free. All copyrights of the template remains of the owner. I just convert them to a WordPress Template.
If you are refreshing a website you usually do it by pressing F5.
So whats with F5?
If you are using PHP then you can use this function.
/*
@params
$dir – the full directory path of the FOLDER you want to delete
$DeleteMe – if you want to delete the said FOLDER or not.
*/
function rmdir_r ( $dir, $DeleteMe = TRUE ){
if ( ! $dh = @opendir ( $dir ) ) return;
while ( false !== ( $obj = readdir ( $dh ) ) )
{
if ( $obj == ‘.’ || $obj == ‘..’) continue;
if ( ! @unlink ( $dir . ‘/’ . $obj ) ) $this->rmdir_r ( $dir . ‘/’ . $obj, true );
}
closedir ( $dh );
if ( $DeleteMe )
{
@rmdir ( $dir );
}
}
Sample:
Long ago I have been programming with PHP but I am having problem in getting the inserted key for the new record that I have just inserted to my database.
My turn around was to query the same data that I have inserted. Recently, it just to my head if there is a function on the net that perform the said task. And poof there it is. mysql_insert_id();
Usage
1. Perform an insert query. ea. INSERT INTO name(`name`) VALUES(‘NAME’)
2. Use the function to get the primary-auto-increment key. $id = mysql_insert_id();
Thats it you have get the key of your inserted record.
Hope it help you.
WEBSITE : http://transpomodi.tk
During my school days, I, together with my co leagues, had develop one website for Operational Research. The said website was develop as part of their finals for the said subject.
Its main goal is to easily compute optimized number of items to be delivered to a particular location. Or what ever the purpose of using the transportation method using modified stepping stone in the area of Operational Research.
Again you are free to use the website for any purpose. Hope it help you.
The said website were developed by:
Download: TJSAsMouseAttack
During my OJT I have experimented on the .Net Framework to develop some games during our free time.
One the games I have develop is the MouseAttack. Its a game were you need to avoid some falling objects in order to get more points. The game was developed for a little time, but I hope you like it.
If that’s what you want. Yahoo is give you one (1) extra email that you can change every year. Yahoo extra Email address put an extra email address on top of your current email.
For an example, your email is [email protected] and you avail an extra email address [email protected]. When you login using [email protected], you will be having the same inbox you have on your [email protected].
It means you have two email account having one inbox.
What is the benefit?
That some of the benefits. So if you haven’t get your extra email address, then create yours now by logging in to your yahoo account and going to this URL http://edit.yahoo.com/config/list_alias
Thank you Ebook for helping me with the Joomla’s Component development.
I learned it easier than what is posted on the Joomla’s Documentation.
For persons looking for joomla you may download it HERE.
I had a hard time yesterday on working the given tutorial of Joomla to create a component. I did follow each step and tried copying and pasting the code. Still the code is not found after installation.
Fortunately, I got into a Plugin Tutorial for CB that did the work. I hope that I can search for a better tutorial other than the available at docs.joomla.org and bend Joomla.