moving php project from fedora to windows wamp error

TinaTurner

New Member
I have a php project and I am trying to move it from fedora to windows. I moved the files and I can get to them and I can get to the database as well but I get a strange error \[code\]SCREAM: Error suppression ignored for( ! ) Parse error: syntax error, unexpected end of file in C:\wamp\www\portfolio\templates\sell_form.php on line 21Call Stack# Time Memory Function Location1 0.0029 259504 {main}( ) ..\sell.php:02 0.1515 304656 render( ) ..\sell.php:67\[/code\]this the file \[code\]<table class="table table-hover center-table table-bordered"> <tr> <th>Symbol</th> <th>Name</th> <th>Shares</th> <th>Price</th> <th>Total</th> </tr><?php foreach ($shares as $row): ?> <tr> <td><?= $row["symbol"]?></td> <td><?= $row["name"]?></td> <td><?= $row["shares"]?></td> <td>$<?= number_format($row["price"],4)?></td> <td>$<?= number_format($row["total"],4)?></td> </tr><? endforeach ?><tr> <td>CASH</td> <td></td> <td></td> <td></td> <td>$<?= number_format($cash[0]["cash"], 4)?></td></tr></table>\[/code\]
 
Back
Top