Check your version:
cat /etc/issue
or
lsb_release -a
or
cat /etc/lsb-release
Then follow this, it works perfectly: wiki.debian.org/iwlwifi
Check your version:
cat /etc/issue
or
lsb_release -a
or
cat /etc/lsb-release
Then follow this, it works perfectly: wiki.debian.org/iwlwifi
I found this book online. Very nice!
You need to use jQuery.noConflict().
ex:
<!– New jquery ui version –>
<link rel=”stylesheet” type=”text/css” href=”http://ajax.googleapis.com/ajax/libs/jqueryui/1/themes/redmond/jquery-ui.css”>
<!– jquery ui function for the new version, changing the ‘$’ to ‘$jq’ –>
<script type=”text/javascript”>
$jq(function() {
// do something
});
</script>
<script type=’text/javascript’>
var $jq = jQuery.noConflict();
</script>
<!– Older jquery ui version –>
<script type=”text/javascript” src=”js/jquery-1.4.1.min.js”></script>
Just add this to the end of your .htaccess file.
SetEnv PHP_VER 5
SetEnv REGISTER_GLOBALS 0
SetEnv ZEND_OPTIMIZER 1
SetEnv MAGIC_QUOTES 0
You need a database connection prior to the functions..
$query = dbconnect(“select ‘test’;”);
(where dbconnect is a function to connect to the DB and “select ‘test’” is just a random query)
Ex:
<?php
if (isset($_POST[‘submit’])){
$query = dbconnect(“select ‘test’;”);$forename = mysql_real_escape_string(htmlspecialchars($_POST[‘forename’]));
etc…