-1

I keep getting the following error, and i actually have no clue why - i spent way way to long trying to figure it out - but no luck so far.

Error:

Parse error: syntax error, unexpected 'function' (T_FUNCTION) in /home/g  
/crm.dk/wp-content/plugins/oa/lib/php/bill.php on line 1

Code:

<?php
/******************************************/
/*               Generalt                 */
/******************************************/
function update_stuff($sStuff)
{
....
....
....
....
]
Mac
  • 334
  • 1
  • 3
  • 13

1 Answers1

2

Function closing bracket is wrong

<?php
/******************************************/
/*               Generalt                 */
/******************************************/
function update_stuff($sStuff)
{
....
....
....
....
}
Arun
  • 1,609
  • 1
  • 15
  • 18