Archive

Posts Tagged ‘RIA’

Visual WebGui 6.3.8 Released

July 12th, 2009 Jigish Thakar No comments

Visual WebGui version 6.3.8 was released today and can be downloaded here.

This is a further stabilization of 6.3.x that includes some resolved button behavior issues, as well as features such as Flash 10 uploading compatibility and the ability to configure a virtual directory.

The full v6.3.8 change log can be found here.

Zend Framework 1.7 Preview Release now available

October 17th, 2008 Jigish Thakar No comments

the Zend Framework 1.7 Preview Release is now available from the Zend Framework download site!

While 1.7PR is not a feature complete release in the 1.7 series, it nevertheless contains some very important features scheduled for the 1.7 production release:

  • New Zend_AMF component
  • Dojo Toolkit 1.2.0
  • New ZendX_JQuery component
  • Support for dijit editor
  • Metadata API in Zend_Cache Read more…

Yahoo Re-Launched IndexTools As Its Web Analytics

October 13th, 2008 Jigish Thakar No comments

padding:5px;Yahoo has re-launched IndexTools as Yahoo Web Analytics. IndexTools is a web analytics package which brought in April 2008. Yahoo Web Analytics is an enterprise site analytics tool that provides real time visitor behavior on website. With the powerful and flexible tools and dashboards, it able to provide the marketers and website designer with useful analysis reports that will enhance their visitor experience, increase sales, increase traffic and reduce marketing cost.

ywa wa img pu 2 Yahoo Re Launched IndexTools As Its Web Analytics Read more…

What Is Adobe/Macromedia Flex?

October 13th, 2008 Jigish Thakar 5 comments

As a web developer you’ve often found yourself wishing there was a way to make web applications that weren’t limited to the heavy restrictions of HTML. You’ve used JavaScript to make your forms a little more intuitive with dynamic/context driven comboboxes, but to do anything more often requires heavy amounts of JavaScript and DHTML. Even if you are a pro at it, it’s extremely time consuming to make workflow interactive and user friendly. More importantly, why would you want to be spending so much time on core UI functionality when you’re getting paid to work on business logic and workflow.

Read more…

Categories: Technology, flex Tags: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,

Basic About PHP 1

September 12th, 2008 Jigish Thakar 2 comments

hey guys with this i m starting new thing on my blog

as per my brother request now i ll post stuff for PHP Beginners also..

Command can be used to connect to ur server that is WAMP server

<?php

mysql_connect(“localhost”,”root”,””)or die(“can not connect to server“);

?>

To select database

<?php

mysql_select_db(“database_name”)or die(“no database found”);

?>

How to write query

<?php

$qr = “select name, class from tablename”;

?>

Its always better to write query and store it in some variable its good practice

How to execute query

<?php

$rs = mysql_query($qr)or die(mysql_error());

?>

$rs is result set obtained by query execution

now how to print result

if u r sure result is single row then

$row = mysql_fetch_row($rs);

echo “name : ”;

echo $row[0];

echo “<br>”;

echo “class : ”;

echo $row[1];

if result is more then one row then

while($row = mysql_fetch_row($rs))

{

Echo “name : ”;

echo $row[0];

echo “<br>”;

Echo “class : ”;

echo $row[1];

}

different methods to fetch data from resultset

$row = mysql_fetch_array($resultset)

different methods to fetch data from resultset

this will give result set in array and u can access this array using index or associates i.e.

$row[0]

$row[1]

$row[2]

Or

Associates

$row[‘name’]

$row[‘class’]

$row[‘rollnumber’]

$row = mysql_fetch_row($resulset)

here array can be accessed just by index

i.e.

$row[0]

$row[1]

$row[2]

$row = mysql_fetch_assoc($resultset)

Here only associates

$row[‘name’]

$row[‘class’]

$row[‘rollnumber’]

there is one more method i.e.

$row = mysql_fetch_object($resultset)

Here u can access by creating object

i.e.

 $row->name;

$row->class;