Skip to content

Tag: php

Get currency symbol in PHP

Let’s start with simple piece of code to format money with NumberFormatter: $formatter = new NumberFormatter(‘en_US’, NumberFormatter::CURRENCY); echo $formatter->formatCurrency(123456789, ‘JPY’); …

Php, in_array, 0 value

I was trying to understand the in_array behavior at the next scenario: $arr = array(2 => ‘Bye’, 52, 77, 3 => ‘Hey’); var_dump(in_array(0, $arr)); The returned value of the in_array() is …

Undefined function mysql_connect()

I have ran aptitude install php5-mysql (and restarted MySQL/Apache 2), but I am still getting this error: Fatal error: Call to undefined function mysql_connect() in /home/validate.php on line 21 phpinfo() says the /etc/php5/apache2/conf.d/pdo_mysql.ini file has been parsed. Answer Well, this is your chance! I…

Can cookie values be set after html has loaded on a page?

I read that cookie values can be set after HTML content has been sent from a PHP script to the web server. However, when working with this, I have not been able to set the cookies as I had hoped. Can someone straighten out my discrepancy? Answer PHP can only set cookies while sending the headers of the page (…

Create a DSN for the function odbc_connect for Oracle

The information I have concerning the Oracle database O need to connect to using PHP through EasyPHP is the following: user, password, host, port, service. I’m new to ODBC. I tried to use the function odbc_connect, but I keep getting errors simply because I don’t know how to make a DSN. I tried us…