See Inside Page’s Head Easily

Review November 5th, 2008

Wew so many feature available on Mozilla Firefox with third party applications. Yesterday I found Professor X add-ons. With this add-ons you can show inside page’s head easily without open page source. As web programmer, i’ts very useful to me to get embedded css style or js script on some pages and download it.

Read the rest of this entry »

Sphere: Related Content

Tags: , , ,
1 Star2 Stars3 Stars4 Stars5 Stars (No Ratings Yet)
Loading ... Loading ...

Multiple Submit Button On HTML Form

Whatever November 3rd, 2008

Identifying the submit button in the server side
The name and value of the button that is used to submit the form is passed along with the other data to the server script. For the button above, when you click on the submit button, the data passed to the server side script is mysubmit=Click!
Having Multiple Submit buttons
You can have more than one submit button in a form. But, how to identify from the server side which button submitted the form?

One way is to have different names for the submit buttons.

1
2
<INPUT type="submit" name="Insert" value="Insert">
<INPUT type="submit" name="Update" value="Update">

Read the rest of this entry »

Sphere: Related Content

Tags: ,
1 Star2 Stars3 Stars4 Stars5 Stars (No Ratings Yet)
Loading ... Loading ...

Get Next Auto Increment on Code Igniter

Code Igniter October 30th, 2008

Today, I got problems to get next auto increment with Code Igniter. In this case, I tried to provide link to view current post page, after users post his blog. For example: blog table contain fields id, title, and body. I used auto increment for id and id as primary key. Users will only fill title and body on form available, and id will automatically auto increment on MySql Table. So I can’t send id by post method.

Well in this case, I need to get next auto increment to detect id on current user post. Why? because I usually sent post id parameters on url. For example: http://localhost/blog/fullpage/45 with base http://localhost/. So, post id placed on segment(2) of uri. Then I make query from table blog where id = uri segment(2) to get fullpage post where id = 45.

Read the rest of this entry »

Sphere: Related Content

Tags: , , ,
1 Star2 Stars3 Stars4 Stars5 Stars (No Ratings Yet)
Loading ... Loading ...

Error Number 0×800ccc19 Caused By Antivirus Program

Problem October 25th, 2008

Today I tried to connect to my mail server on my office with outlook. But I always got connection timeout to mail server message and showing error number 0×800ccc19. I had checked my account setting to make sure that’s correct setting, but I got connection time out again. I tried to use my account setting in another computer and it’s working. Wew, so what happen with my computer?

Read the rest of this entry »

Sphere: Related Content

Tags: , ,
1 Star2 Stars3 Stars4 Stars5 Stars (No Ratings Yet)
Loading ... Loading ...

Code Igniter 1.7 Released

Code Igniter October 24th, 2008

Code Igniter Version 1.7 has been released.  This version contains a number of new features and enhancements, as well as many small improvements and bug fixes. For a list of all changes please see the Change Log.

If you are currently running Code Igniter please read the update instructions.

Note:  If your browser does not display the 1.7 user guide please clear your cache and reload the page.

Sphere: Related Content

Tags: ,
1 Star2 Stars3 Stars4 Stars5 Stars (No Ratings Yet)
Loading ... Loading ...

Blogroll Link Update