A syntax error occurs when a program does not follow the syntactical rules of the programming language.

learn more… | top users | synonyms

-4
votes
1answer
18 views

error in the syntax of my form verification script [closed]

Ok this form checks my form on the main page. it is a cryptocoin faucet. I am a php noob and this script does everything i wanted it to, except i edited it and now i keep getting an error when i ...
-4
votes
3answers
38 views

unexpected T_VARIABLE [closed]

I knew that, this question is a repetition : if (($_POST['os'] != "") || ($_POST['cp'] != "") || ($_POST['ser'] != "")) { $var .= "left join (select bug_id,os,cp,service from ...
0
votes
3answers
22 views

JQuery: wrapping variable's contents

I have a variable that contains a bunch of HTML that I retrieve from a HTML5 SQL database. I can .append() this to an element in the DOM and it appears fine. But I want to .wrap() the HTML contents ...
-2
votes
1answer
27 views

Syntax Error (T_VARIABLE) using PHP Generators [closed]

I am Learning php and see the example of Generator in php.net but when I execute it. It gives a error. Parse error: syntax error, unexpected '$i' (T_VARIABLE) Here is code. <?php function ...
-1
votes
1answer
23 views

Uncaught SyntaxError: Unexpected token ILLEGAL (PHP & Javascript)

I've looked a bit into this error and it seems that a majority of people with a similar question end up being the victim of invisible characters. However, I've taken out any white space and retyped ...
0
votes
0answers
15 views

Must declare the scalar variable “@fname”. Error asp.net

I am getting the Scalar variable error when I am trying to select parameters in the Click Event. I am not sure if I am doing this the right way. Can somebody look at my code and explain me the issue? ...
0
votes
1answer
20 views

HashMap in shell script with File path

I am trying to declare a hash map in shell script containing a file path as key and some variable as value. Something like this fileVarMap=( ["Dir1/file1.txt"]="myVar1" ["Dir2/file2.txt"]="myVar2" ) ...
0
votes
1answer
42 views

Android Java code is giving Syntax error on break statement

I need help on figuring out why this code is giving me: Syntax error on token ":", { expected after this token/line 108,109,110(label125,label192,label202 in the beginning)/Java Problem ...
-1
votes
1answer
27 views

Getting syntax error in sql select statement

I have this sql statement: SELECT inquiry_response, inquiry_response_date, date_initiated, date_closed, (select count(*) from Inquiry_Responses ...
0
votes
2answers
35 views

SQL Stored procedure delete duplicate records, keep one

I'm using 3 tables tblproduct, tblstock and tblwinkel. There is are foreign keys productid and winkelid in the tblstock table. The tblstock table has a field stock as well, which is an integer. I ...
0
votes
2answers
21 views

How to make compiler check what's given to SIGNAL()?

In writing a Qt4 app, I clumsily wrote: QObject::connect(spinbox, SIGNAL(vlaueChanged(int)), .... and it compiled, and it ran, but of course the spinbox didn't have any effect. Such misspellings ...
0
votes
1answer
11 views

How to use keyDown() and keyUp() in sikuli?

This is my code snippet, reg = selectRegion("Selected a region") reg.keyDown(KEY_CTRL) reg.keyUp() My objective is to select some lines, as we do it by pressing CTRL and then scrolling down, but it ...
-1
votes
1answer
30 views

syntax error before '&' token [closed]

I wrote a simple code in C using the NetCDF libraries to read a NetCDF file. I wrote the code looking at the NetCDF C documentation given by Unidata. int ncid=0; errstatus = ...
0
votes
1answer
29 views

MongoDB find().count() - SyntaxError: missing : after property id (shell):1

Have a .json data-supplied collection of tweets.. Looking to count Delete-Requests in Sessions: db.tweets.find({"delete"}).count() And this syntax is incorrect because SyntaxError: missing : after ...
0
votes
2answers
38 views

PHP code working in PHP5, but not 4 [closed]

This code of mine is working in PHP5, but not 4, and I have no clue why function now(){ return intval( explode(' ', microtime() )[1] // line 9 ) * 100 + ...
-1
votes
3answers
54 views

Sql Syntax Error [closed]

Hi I know there would be a lot of queries of this same type here (I know risk being down voted or banned - but I need to solve this and move on). I have debugged a lot my SQL syntax errors till now. ...
0
votes
0answers
14 views

SVG Parsing Error: not well-formed on <text> element

Can you help me locate what is wrong with the code on the second line? Apparently it's not well form and I can't see why? <g id="text-x-axis" class="text-svg" transform="matrix(0.7071 -0.7071 ...
-3
votes
1answer
38 views

Parse error: syntax error, unexpected T_STRING [closed]

After inserting shortcode into a Wordpress theme I'm building, I received the following error: Parse error: syntax error, unexpected T_STRING in ...
-1
votes
0answers
36 views

Error C4430 when I try to include a header file [duplicate]

When I try to include "cTauler.h" in cQix.h I get this error.. I think I've used enough include.. The code of cTauler.h: #ifndef _CTAULER #define _CTAULER #include <string> #include "CQix.h" ...
0
votes
1answer
36 views

Odd Java String[] error

I have this line of code: String[] projection = {MediaStore.Audio.Media._ID, MediaStore.Audio.Media.ARTIST, MediaStore.Audio.Media.TITLE, MediaStore.Audio.Media.DATA, ...
-1
votes
1answer
27 views

Why is a syntactic error in a subfile designed to be rescued by `require`?

As asked by liron in this question, a syntax error in a require-d subfile is rescued by the method require and is raised as an error of require. Why is it designed like this? What is the benefit of ...
0
votes
4answers
29 views

Expected primary expression before

I have the following code in a translator.h file class Dictionary { public: Dictionary(const char dictFileName[]); void translate(char out_s[], const char s[]); and I call the function in my ...
-3
votes
1answer
58 views

What am i missing? c++ errors

So, here is the updated thread: Maybe there is white space in there that I'm not seeing? It is the exact same error as it was before. You anyone can think of anything to try, ill do it. #include ...
1
vote
1answer
44 views

“SyntaxError: unexpected }” when setting up backbone.js with rails [closed]

Ok, I'm baffled. I am trying to set up a rails/backbons SPA. I am following along with this railscast: http://railscasts.com/episodes/323-backbone-on-rails-part-1?autoplay=true I get this error from ...
3
votes
1answer
46 views

How to read out a column with a colon (:) in its name in hibernate and postgresql

sorry for this maybe being a very easy question, I searched and didn't find anything about my specific case. I am given a postgre database in which I have a table that has a column called: ...
-1
votes
5answers
28 views

Why does this ALTER TABLE query throw syntax error?

This is the query I'm using: ALTER TABLE apartment ADD technical TEXT NOT NULL AFTER is_sale Why does it produce a syntax error? EDIT: ALTER TABLE apartment ADD COLUMN technical TEXT NOT NULL ...
2
votes
2answers
33 views

SQL Server : error creating table with multiple primary keys

Query is as follows: create TABLE tbl_temp ( [ref] numeric(18), [item_code] varchar(50), [item_desc] nvarchar(150), [Qty] smallint) PRIMARY KEY (ref, item_code)) Returning error: Msg 156, ...
-3
votes
1answer
42 views

Can you please tell me what's wrong with this code?

Here's some Lua code I just wrote in SCIte, and I don't know what's wrong with it exactly, so could someone explain to me what I did wrong and how to fix it? t = setmetatable({},{ __newindex = ...
0
votes
1answer
12 views

mvc3 assign anonymous types or workaround

I have a model that is used to modify a user's password and captures the date that the password has been changed. I am getting an error saying property or indexer anonymous type cannot be assigned to ...
0
votes
1answer
16 views

Prolog for loop syntax error

I am trying to make a game similar to minesweeper and i need to check the neighbours of a square in the map but i get a syntax error at my for loop, I am using SWI-Prolog checkneighbours(X,Y) :- ...
-2
votes
1answer
37 views

Python “Invalid Syntax” error in class definition [closed]

I am new to Python, and am writing a grep-like program. I am trying to write the following class to receive an OptionParser to parse the command line input: Class StdRenderer(): parser = None ...
0
votes
1answer
46 views

CUDA: __device__ and __global__ error: expected constructor, destructor, or type conversion before “unsigned”/“void”"

So my problem is: I'm using Nvidia's nsight application on mac os x mountain lion to write a CUDA application: The source code is a .h/.cu/.cpp mix. I have a HelloCUDA.h header with following ...
-2
votes
1answer
50 views

Function signature with generics java

I am trying to understand lambda expressions in Java and came across this blog post: Tutorial Lambda Expressions Take the first two code snippets: import java.util.ArrayList; import java.util.List; ...
0
votes
2answers
13 views

Mysql error echoing the variable

I have a mysql query as below - $id_order_last="15"; $id_order[]=array(); $sql1="SELECT * FROM `ps_orders` WHERE `id_order`> $id_order_last order by `id_order`"; echo $sql1; ...
1
vote
1answer
36 views

Syntax error in a batch script when asking for user input (/P)

I've asked a couple of people what the issue is, and have walked away twice without a solution. I haven't played with batch much before, so it may be a simple mistake. The code is currently supposed ...
0
votes
4answers
31 views

Failed to add record to database

I'm sitting with this code for about 2 hours and I still dont know why it isnt working. Check this: mysql_query("INSERT INTO newsy (tytul, skrot, opis, cena, opinia, galeria, data_utw, extra, ...
0
votes
1answer
81 views

SQL Server : computed column error in dateadd formula

These are the columns (simplifying): myDate as Date theMonths as int Then I create a computed column finalDate in Microsoft SQL Server Management Studio 2008 R2, with this formula: (dateadd(month, ...
3
votes
3answers
28 views

Building a syntax checker

I am building a app like a compiler with my own script language. The user will enter the code and the output will be another app. So I need tell to user if some line is wrong and why it is. But I ...
0
votes
0answers
21 views

Parse error: syntax error, unexpected T_ENCAPSED_AND_WHITESPACE in /base_facebook.php on line 158

Hi I am Getting This Error Tried Replacing all the sdk library files still the same?
0
votes
1answer
41 views

Gets results only when empty

I have this sql statement that returns rows from a customer table. The user has the option for searching with what ever they want to type in. I had this working, until I tried to protect against sql ...
-2
votes
1answer
37 views

Parse Error: Syntax Error, unexpected ',' in C:// on line 14 [closed]

I've got a problem with my code and I'd like to get some help with it. I've been trying to make a calculator, however this issue has occurred when trying to view the site. "Parse Error: Syntax ...
-1
votes
2answers
47 views

SyntaxError: invalid syntax (Python 3.2) [closed]

I have a function that will insert spaces in a tuple of strings so that all strings are equal in len. I also have a function that takes to tuples of strings and some formating info and combinde them ...
0
votes
5answers
59 views

Python Syntax Error? [closed]

I am tinkering around with a simple game in Python and it won't run because of this syntax error: intro = 'Greetings! What\'s your name?' Hunter = 'Oh, Hey Hunter! Hows life?' Spencer = 'Go away you ...
0
votes
1answer
21 views

Syntax error while making 2-Dimensional LinkedList

I'm trying to make a 2-Dimensional LinkedList in Java and this is what I have come up with: LinkedList<LinkedList<String>> rows = new LinkedList()<LinkedList<String>>; ...
0
votes
1answer
36 views

CakePHP: syntax error, unexpected T_LIST, expecting T_STRING

my cakephp app throws me that error,on that line: class List extends AppModel { and i cannot understand why. the whole List.php model file is: <?php App::uses('AuthComponent', ...
-3
votes
0answers
17 views

error C2143: syntax error : missing ';' before '.'(When Loading Obj File)

Can't understand this error, i just add Character.Load("Tank2.obj"); and there goes the error saying: error C2143: syntax error : missing ';' before '.' for (int i = 0; i < PowerUps.size(); i++) ...
0
votes
3answers
32 views

Required: Variable Found: Value

public static int biggestArrayGap(int []a, int n) { int biggestGap = Math.abs(a[1]-a[0]); for (int i=1; i<n-1; i++) { if (Math.abs(a[i]-a[i-1]) > biggestGap) ...
2
votes
2answers
46 views

Trying to understand optional, list and named arguments in Python

I'm a beginner at Python, trying to understand function arguments and their types and orders. I tried to experiment a little with the different kinds of argument and here's my experiment def main(): ...
0
votes
1answer
26 views

SQL Server 2008 - Trying to edit dates - Syntax Error?

I have a database that has startDate and endDate. I am trying to run this simple script to find and replace certain dates. Here is my script: SET startDate = '2012-10-11 07:00' AND endDate = ...
0
votes
3answers
44 views

Ruby on Rails: Trying to understand Undefined method, nil:NilClass

I'm trying to understand how I'm getting two different outputs from rails If I have this: <%= if value.user.present? link_to value.user.email, value.user end %> I gives me what I wanted. ...

1 2 3 4 5 34