Pessoal,
uso o SC 8.1.046 com MySQL.
Criei/copiei uma biblioteca simples para uns testes e notei que se tiver sc_lookup está dando erro, alguém já passou por isso?
Veja o código da biblioteca:
[code]<?php
function GetCustomerName($customerid){
if($customerid== ‘’){ return false; }
$str_sql = “SELECT customername FROM customer where customerid = $customerid”;
sc_lookup(dataset,$str_sql);
return {dataset[0][0]};
}
function GetTicketStatus($ticket_id){
if($ticket_id == ‘’){ return false; }
$str_sql = "SELECT statusid FROM ticket where ticketid = $ticket_id";
sc_lookup(dataset,$str_sql);
return {dataset[0][0]};
}?>[/code]
ao executar a aplicação recebo a seguinte mensagem de erro:
Parse error: syntax error, unexpected '{' in C:\Program Files (x86)\NetMakeMySQL\v81\wwwroot\scriptcase\app\sc_tickets\form_customer_open_ticket\vaucher.php on lineEsse erro é sempre onde trata o {dataset[0][0]}. Alguém sabe o que está errado nesta biblioteca? Estou estudando o exemplo de HelpDesk.