It is very easy.
First download Universal-USB-Installer.
Just fix the locations of pendrive and ISO image.
Click create button.
That's it.
Download Universal- USB-Installer from here
...
Here is a method to make buttons which will disabled automatically after click. This is useful when you dealing with php scripts.There also other methods for this. Here is only the logic not complete code.
<?php
mysql_select_db("sample", $p);
$z1=$z2=0;
$r=mysql_query("SELECT * FROM sampletable");
while($rows=mysql_fetch_array($r))
{
$take=$rows['samples2'];
if($take=='a1')
$z1=1;
if($take=='a2')
$z2=1;
}
if($z1==1)
echo "<input type='submit' value='a1' name='opt' disabled >";
else
echo "<input type='submit' value='a1' name='opt'...
The following code can be used for validating name like fields.(Useful when dealing with html forms)
This code uses two built in functions
1)charAt()2) indexOf()
charAt()- Returns the character at the specified index in a string.
Ex: charAt(5)--> character at 6th position(Starting with 0)
indexOf() - Returns the position of the first occurrence of a specified value in a string and return -1 if not found.
Bellow code has a variable not_needed. You can simply specify the unwanted character inside the double quotes.
<script...