banner-EvergreenBusinessSystem

jQuery Video Tutorial – Selectors

ThinkVitaminTutorial asked:


jQuery video tutorial on the utilisation of selectors. Another great online tutorial from the Think Vitamin Membership library. You can register to be a member here: membership.thinkvitamin.com?cid=118

Website content

Technorati Tags: , ,

John Resig: Javascript and jQuery

nuACM asked:


JavaScript is a misunderstood language. While it, seemingly, doesn’t contain the libraries or abstraction of Java or the terse flexibility of Scheme, it offers serious advantages to skilled developers. Combining a functional style with prototypal inheritance JavaScript is arguably the most widely deployed language of either type. Considering that virtually every computer user has an interpreter capable of running it, JavaScript serves to be one of the best languages to learn. In this talk we’ll explore all the, interesting, aspects of the language giving you a good understanding of how to best use it in your web, and desktop, applications. John Resig is a JavaScript Evangelist for the Mozilla Corporation and the author of the book ‘Pro Javascript Techniques.’ He’s also the creator and lead developer of the jQuery JavaScript library. He’s currently located in Boston, MA.

Website content

Technorati Tags: , ,

How can i delete multiple records using checkbox in php programming?


You can use following code for it

<?php
$host="localhost"; // Host name
$username=""; // Mysql username
$password=""; // Mysql password
$db_name="test"; // Database name
$tbl_name="test_mysql"; // Table name

// Connect to server and select databse.
mysql_connect("$host", "$username", "$password")or die("cannot connect");
mysql_select_db("$db_name")or die("cannot select DB");

$sql="SELECT * FROM $tbl_name";
$result=mysql_query($sql);

$count=mysql_num_rows($result);

?>
<table width="400" border="0" cellspacing="1" cellpadding="0">
<tr>
<td><form name="form1" method="post" action="">
<table width="400" border="0" cellpadding="3" cellspacing="1" bgcolor="#CCCCCC">
<tr>
<td bgcolor="#FFFFFF"> </td>
<td colspan="4" bgcolor="#FFFFFF"><strong>Delete multiple rows in mysql</strong> </td>
</tr>
<tr>
<td align="center" bgcolor="#FFFFFF">#</td>
<td align="center" bgcolor="#FFFFFF"><strong>Id</strong></td>
<td align="center" bgcolor="#FFFFFF"><strong>Name</strong></td>
<td align="center" bgcolor="#FFFFFF"><strong>Lastname</strong></td>
<td align="center" bgcolor="#FFFFFF"><strong>Email</strong></td>
</tr>
<?php
while($rows=mysql_fetch_array($result)){
?>
<tr>
<td align="center" bgcolor="#FFFFFF"><input name="checkbox[]" type="checkbox" id="checkbox[]" value="<? echo $rows['id']; ?>"></td>
<td bgcolor="#FFFFFF"><? echo $rows['id']; ?></td>
<td bgcolor="#FFFFFF"><? echo $rows['name']; ?></td>
<td bgcolor="#FFFFFF"><? echo $rows['lastname']; ?></td>
<td bgcolor="#FFFFFF"><? echo $rows['email']; ?></td>
</tr>
<?php
}
?>
<tr>
<td colspan="5" align="center" bgcolor="#FFFFFF"><input name="delete" type="submit" id="delete" value="Delete"></td>
</tr>
<?
// Check if delete button active, start this
if($delete){
for($i=0;$i<$count;$i++){
$del_id = $checkbox[$i];
$sql = "DELETE FROM $tbl_name WHERE id=’$del_id’";
$result = mysql_query($sql);
}

// if successful redirect to delete_multiple.php
if($result){
echo "<meta http-equiv=\"refresh\" content=\"0;URL=delete_multiple.php\">";
}
}
mysql_close();
?>
</table>
</form>
</td>
</tr>
</table>

jQuery Ajax PHP Tutorial : Swap out page content on your website using PHP

flashbuilding asked:


Get Source Code: www.developphp.com Learn to use jQuery / Ajax post mechanism to communicate to PHP in order to swap out page content, or access a mysql database, or whatever the hell you want.

Website content

Technorati Tags: , ,

jQuery AJAX forms

remysharp asked:


A screencast to show how easy it is to add AJAX to a form using jQuery in very little time. I’ve commented along the way so you can understand what I’m doing, and why I’m doing it. Original code can be downloaded from: remysharp.com

Create a video blog

Technorati Tags: ,

Learn jQuery with FireBug, jQuerify and SelectorGadget

polymorphicpodcast asked:


Learn how Dave Ward (@encosia) uses FireBug, jQuerify and SelectorGadget to learn jQuery and any other client-side technology. Hosted by Craig Shoemaker (@craigshoemaker) for the Polymorphic Podcast polymorphicpodcast.com New: Check out Dave’s series ‘Mastering jQuery’ : tekpub.com

Create a video blog…instantly.

Technorati Tags: , ,

PHP programming?

MAN T asked:


write a program in php which can process the data from this HTML form. To convert a temperature in Fahrenheit to Celsius, 32 degrees need to be subtracted and the result needs to be multiplied with (5/9). For instance, 95 degrees Fahrenheit is 35 degrees in Celcius, and 20 degrees in Celcius is 68 degrees in Fahrenheit.

I cant really understand the guide from PHP user manual anyone can help me please

Caffeinated Content – Members-Only Content for WordPress

Technorati Tags: , ,

Could I get help with programming with php?

joecool asked:


I want to make an awesome facebook app I’m using the developer app to make the app but it’s to confusing the only programming back round knowledge I have is writing simple batch files so is there like a site or something that can break down php programming for noobs like me.

Also side note I want to impress a girl by making this app you didn’t need to know that, but yeah.

Kansieo.com

Technorati Tags: , ,

Why and when would someone use OOP rather than procedural programming in PHP?

Ashes226 asked:


I know some very basic PHP OOP (PHP: Hypertext Preprocessor object-oriented programming). However, I’m not sure why or when someone would ever really want to use it. It seems time consuming and in general unnecessary. Please give me examples on when one method would be better over the other. But mainly, why would you really ever want to use OOP in PHP?

PHP Programming

Technorati Tags: , ,

what are the websites that i can use to help me learn php programming ?

LeBaNeSe 4 eVeR asked:


what are the websites that i can use to help me learn php programming ?

Create a video blog…instantly.

Technorati Tags: , ,