sscanf problem
#4

PHP код:
new model[32], modeliddealeridcolor1color2price;
    if(
sscanf(params"dsddd"dealeridmodelcolor1color2price)) 
needs to be

PHP код:
new model[32], modeliddealeridcolor1color2price;
    if(
sscanf(params"ds[32]ddd"dealeridmodelcolor1color2price)) 
Don't know why you're referring to "Model" as a string..
It's an integer...

The following code would be your best bet...
PHP код:
new modelmodeliddealeridcolor1color2price;
    if(
sscanf(params"ddddd"dealeridmodelcolor1color2price)) 
Reply


Messages In This Thread
sscanf problem - by PowerF - 08.07.2015, 16:48
Re: sscanf problem - by PowerF - 08.07.2015, 16:51
Re: sscanf problem - by PowerF - 08.07.2015, 17:12
Re: sscanf problem - by Prokill911 - 08.07.2015, 19:59

Forum Jump:


Users browsing this thread: 1 Guest(s)