Fahdi’s Personal Blog

Here I share my web ideas

Sothink DHTML Menu 8.2

1 Star2 Stars3 Stars4 Stars5 Stars (1 votes, average: 5 out of 5)
Loading ... Loading ...
December9

Sothink DHTML Menu 8

– Easy Builder to Create JavaScript Cross Browser Menus!

Sothink DHTML Menu is a comprehensive navigation solution for web site. It creates drop-down menu easily and behaves friendly to search engine. Includes user-friendly interface, keyboard navigation, fresh templates, lots of effects and optimal publishing. Tree-like menu can be switched to drop-down menu. Copy and paste menu items in different menu files. Supports Windows Vista. Free add-ins for Dreamweaver, FrontPage, Expression Web and GoLive.

Version 8.2 supports Keyboard Navigation function, which enables user to control the menu by using the keyboard; adds advanced function to both Menu Item Setting and Separator Setting.

DHTML: Fahd Murtaza’s Database driven Dynamic DHTML Menu with Sothink DHTML Menu Builder

Read the rest of this entry »

Share and Enjoy:
  • Digg
  • Facebook
  • LinkedIn
  • NewsVine
  • Technorati
  • Sphinn
  • del.icio.us
  • Mixx
  • Google
  • StumbleUpon
  • Live
  • Print this article!
  • feedmelinks
  • E-mail this story to a friend!
  • Reddit

Innovation continues! Google’s New Chart API

1 Star2 Stars3 Stars4 Stars5 Stars (No Ratings Yet)
Loading ... Loading ...
December6

Fahd Murtaza’s Personal and Technical Blog

 

The innovation continues with Google. Yeah innovation is another name for Google and to me Google is the reason for the word “innovation” in the web technology. Yeah Google continues to innovate on the API front, today releasing an API in a very different category: charting. What is it? From the FAQ: “The Google Chart API is an extremely simple tool that lets you easily create a chart from some data and embed it in a web page. You embed the data and formatting parameters in an HTTP request, and Google returns a PNG image of the chart. Many types of chart are supported, and by making the request into an image tag you can simply include the chart in a web page.” You can see more details on our new Google Chart API Profile here. Steve Crossan from the Chart API team in Zurich notes via their blog that it’s one of Google’s simplest APIs yet: “Let’s get straight in with an example. This URL creates this image:

http://chart.apis.google.com/chart?cht=p3&chd=s:hW&chs=250x100&chl=Hello|World

Fahd Murtaza’s Personal and Technical Blog

“That’s it - no state, no calls, just send your data in an http request and get a png image graph back. Embed the request in an img tag and you’re done.” He notes also this was built as a 20% project to support services like Google Video and Google Finance.” Given that no API key is required, this is indeed a very easy API to start using right away.

Currently supported are line, bar, and pie charts, as well as venn diagrams and scatter plots. You can also add things like fill gradients and markers to charts.

Fahd Murtaza’s Personal and Technical Blog

Google does note there’s a limit of 50,000 queries per user per day. But this is a reasonable constraint given that most charts can be generated and then cached on developer’s own servers.

Share and Enjoy:
  • Digg
  • Facebook
  • LinkedIn
  • NewsVine
  • Technorati
  • Sphinn
  • del.icio.us
  • Mixx
  • Google
  • StumbleUpon
  • Live
  • Print this article!
  • feedmelinks
  • E-mail this story to a friend!
  • Reddit

SQL: Joining (Concatenating two strings in SQL)

1 Star2 Stars3 Stars4 Stars5 Stars (No Ratings Yet)
Loading ... Loading ...
December6

/*
mysql> select CONCAT(”a”,”B”);
+—————–+
| CONCAT(”a”,”B”) |
+—————–+
| aB |
+—————–+
1 row in set (0.00 sec)

*/
select CONCAT(”a”,”B”);

You can use this concat in any kind of SQL command! All depends upon your creativity. For example I had a country names database with a column for flag icons which I thoughtI would insert later on. It was empty for long time and only countries names were in it. So I got the country flag icons from a friend. Just put them in a folder and used concat for concatenating (joining) the names of the country names with a ‘.gif’ to generate the flag icons’ names! Used them in the update query and it worked. Saved me hours of data entry!

Share and Enjoy:
  • Digg
  • Facebook
  • LinkedIn
  • NewsVine
  • Technorati
  • Sphinn
  • del.icio.us
  • Mixx
  • Google
  • StumbleUpon
  • Live
  • Print this article!
  • feedmelinks
  • E-mail this story to a friend!
  • Reddit

Multiple Select box, Select multiple Items from Menu.List box

1 Star2 Stars3 Stars4 Stars5 Stars (1 votes, average: 5 out of 5)
Loading ... Loading ...
November24

Ok,
I create 3 files and 1 database with 1 table.
select3.php this is the form
select4.php this is the function for sending to the database
display.php this is to display result from database
Read the rest of this entry »

Share and Enjoy:
  • Digg
  • Facebook
  • LinkedIn
  • NewsVine
  • Technorati
  • Sphinn
  • del.icio.us
  • Mixx
  • Google
  • StumbleUpon
  • Live
  • Print this article!
  • feedmelinks
  • E-mail this story to a friend!
  • Reddit
posted under Open Source, PHP, Programming, Tutorials, Web Development | 1 Comment »%RATINGS_IMAGES_VOTE%

Developing PHP applications on VS .NET 2005 platform

1 Star2 Stars3 Stars4 Stars5 Stars (1 votes, average: 5 out of 5)
Loading ... Loading ...
November19

You must be ammazed at strange kind of title for this blog post but yeah, this is 101% true and the guys at jcxsoftware , who are committed to provide .NET develpers a platform to develop better web applications using the state of art PHP technology, yeah PHP is better called to be a tech not just a language; coming back to the point. Here is a solution for Visual Studio Users who want to develop PHP applications right from their visual studio interface. The solution is named Vs.Php as abvious from its name, its a Visual Studio enhancement (add-on, extension, plugin..you name it).

“ OK right!” . You might have excalimed by now. So what is Vs.Php’s sould purpose. Follow the link and find out more details.

Read the rest of this entry »

Share and Enjoy:
  • Digg
  • Facebook
  • LinkedIn
  • NewsVine
  • Technorati
  • Sphinn
  • del.icio.us
  • Mixx
  • Google
  • StumbleUpon
  • Live
  • Print this article!
  • feedmelinks
  • E-mail this story to a friend!
  • Reddit