Skip to content

Instantly share code, notes, and snippets.

View abouolia's full-sized avatar
🤠

Ahmed Bouhuolia abouolia

🤠
View GitHub Profile
<?php
// Nav Menu Dropdown Class
include_once( CHILD_DIR . '/lib/classes/nav-menu-dropdown.php' );
/**
* Mobile Menu
*
*/
function be_mobile_menu() {
@abouolia
abouolia / index.html
Created May 29, 2013 23:54
Experience naming IDs or Classes in language Arabic.
<html>
<head>
<meta charset="UTF-8">
<title>Test</title>
<style type="text/css">
#احمد{
background: red;
height: 100px;
width: 100px;
@abouolia
abouolia / gist:1cee66b9cf1b6ed0480a
Last active December 17, 2015 00:29
Second Degreee Quation
<?php
function Seconddegreeequation( $a, $b, $c, $g=null){
if ( $g == 1 || $g == true){
$val = (-1 * $b) + sqrt(pow($b, 2) - 4*$a*$c);
}else{
$val = (-1 * $b) - sqrt(pow($b, 2) - 4*$a*$c);
}