Hi All,
I am having contsantly getting the following error:
PHP Fatal error: Out of memory (allocated 4295491584) (tried to allocate 8589934593 bytes)
the line its complaining about is as following hilighted in bold:
<?php
$link = @sybase_connect('****', '***', '****')
or die("Could not connect !");
echo "Connected successfully";
$sql = "SELECT id_key, nm_value, dt_create
FROM MERLIN_PROPERTIES";
echo "<table border='1' width='100%' cellspacing=0 cellpadding=0>";
echo " <tr bgcolor='lightblue'>";
echo " <td><b>ID KEY</b></td>";
echo " <td><b>NM VALUE</b></td>";
echo " <td><b>DT CREATE</b></td>";
echo " </tr>";
[B]$sql_result = sybase_query($sql,$link);[/B]
Any help would be very much appreciated. Many thanks
Shuel