command: sudo apt-get install php5-gd Don’t forget to restart apache service apache2 restart Related posts installing apache php and mysql on Pardus (0) install php apache mysql phpmyadmin (3) Unlimited Subcategory with Adjacency List Model (8) Notice: Use of undefined constant/variable (0) mysql_insert_id (0)
# change a hexadecimal string to decimal number and reverse # check two different representations of the hexadecimal string # negative values and zero are accepted # tested with Python24 vegaseat 11oct2005 def dec2hex(n): “””return the hexadecimal string representation of integer n””” return “%X” % n def hex2dec(s): “””return the integer value of a hexadecimal … Read more
