-
Began Watching Merge two classes
Hello everyone, i want to make a status bar which will have there Login and Status of the user but i want that to be in one class and when … -
Replied To a Post in Merge two classes
Sounds like you want to implement a template engine. Perhaps you should have a look at Smarty or RainTpl. -
Stopped Watching Hi :-)
I made this because I wanted to say hi :D and I wanted to introduce myself , I'm Arash , born on october 15th 1991 , I'm not really good … -
Began Watching Hi :-)
I made this because I wanted to say hi :D and I wanted to introduce myself , I'm Arash , born on october 15th 1991 , I'm not really good … -
Replied To a Post in Hi :-)
Welcome. -
Stopped Watching Merge two classes
Hello everyone, i want to make a status bar which will have there Login and Status of the user but i want that to be in one class and when … -
Began Watching Merge two classes
Hello everyone, i want to make a status bar which will have there Login and Status of the user but i want that to be in one class and when … -
Replied To a Post in Merge two classes
Please do not bump your threads. Am having difficulty understanding what should be in your class. If it's just CSS or not. -
Stopped Watching Displaying spreadsheet/CSV data on web page (and editing)
First post ... I have some data that is currently passed around in a spreadsheet that people pull off of a server as needed. I would like to have that … -
Began Watching Displaying spreadsheet/CSV data on web page (and editing)
First post ... I have some data that is currently passed around in a spreadsheet that people pull off of a server as needed. I would like to have that … -
Replied To a Post in Displaying spreadsheet/CSV data on web page (and editing)
You can use SQLite or MySQL as your database. I do not recommend a file, if multiple users will be accessing it. Then you can use a tool, or write … -
Stopped Watching problem with uploading files :(
Hi I have a problem with uploading files in php, and I don't know what is wrong :( this is my code : <?php //require_once('inc/config.php'); ?> <html dir="rtl"> <head> <title>تسجيل … -
Began Watching problem with uploading files :(
Hi I have a problem with uploading files in php, and I don't know what is wrong :( this is my code : <?php //require_once('inc/config.php'); ?> <html dir="rtl"> <head> <title>تسجيل … -
Replied To a Post in problem with uploading files :(
> I don't know what is wrong What happens, or what doesn't happen? Any errors? -
Stopped Watching regular expression
Create a username that's at least 6 characters.It may include uppercase and lowercase letters. Usernames are case-sensitive. It also must include either:at least one number; or one of these symbols:_@/- -
Began Watching regular expression
Create a username that's at least 6 characters.It may include uppercase and lowercase letters. Usernames are case-sensitive. It also must include either:at least one number; or one of these symbols:_@/- -
Replied To a Post in regular expression
Regular expressions are not for creating strings, but for parsing them. -
Stopped Watching flashplayer disaster
PLEASE ! Can anyone recommend an alternative to Adobe Flashplayer -
Began Watching flashplayer disaster
PLEASE ! Can anyone recommend an alternative to Adobe Flashplayer -
Replied To a Post in flashplayer disaster
Silverlight. -
Edited flashplayer disaster
PLEASE ! Can anyone recommend an alternative to Adobe Flashplayer -
Stopped Watching Unexpected $end in existing article template - error not previously there
Hi there, totally confused and hoping someone can help. I have an existing article template which suddenly developed this error when viewing the article: Parse error: syntax error, unexpected $end … -
Began Watching Unexpected $end in existing article template - error not previously there
Hi there, totally confused and hoping someone can help. I have an existing article template which suddenly developed this error when viewing the article: Parse error: syntax error, unexpected $end … -
Replied To a Post in Unexpected $end in existing article template - error not previously there
> Parse error: syntax error, unexpected $end Most of the time this is a missing curly bracket somewhere. -
Stopped Watching 'LIKE' Statement on two separate words
Hi Guys I have a "StudentNames" column in an sql table. Each student in the table has atleast two names all in one column. Assume that the following as studentNames. … -
Began Watching 'LIKE' Statement on two separate words
Hi Guys I have a "StudentNames" column in an sql table. Each student in the table has atleast two names all in one column. Assume that the following as studentNames. … -
Replied To a Post in 'LIKE' Statement on two separate words
> Can Indexes check this? Yes. A unique index will prevent insertion of a duplicate. -
Stopped Watching 'LIKE' Statement on two separate words
Hi Guys I have a "StudentNames" column in an sql table. Each student in the table has atleast two names all in one column. Assume that the following as studentNames. … -
Began Watching 'LIKE' Statement on two separate words
Hi Guys I have a "StudentNames" column in an sql table. Each student in the table has atleast two names all in one column. Assume that the following as studentNames. … -
Replied To a Post in 'LIKE' Statement on two separate words
> In order to avoid duplicates in names when inserting new names. Why not use a unique index on that column? -
Stopped Watching rename column
Hello, What's the mysql syntax to rename column in a table? I try this: ALTER TABLE static_content RENAME COLUMN title TO shorttext MySQL said: Documentation #1064 - You have an … -
Began Watching rename column
Hello, What's the mysql syntax to rename column in a table? I try this: ALTER TABLE static_content RENAME COLUMN title TO shorttext MySQL said: Documentation #1064 - You have an … -
Replied To a Post in rename column
http://dev.mysql.com/doc/refman/5.1/en/alter-table.html RENAME is for tables. ALTER TABLE static_content CHANGE COLUMN title shorttext VARCHAR(255) Adjust the column type accordingly. -
Stopped Watching Json webservice
Dear all, I want to develop a webservice that returns a json like the following: http://niceq8i.tv/mobile/api/cat/get_sounds How to make the functions has a direct link like that and return the … -
Began Watching Json webservice
Dear all, I want to develop a webservice that returns a json like the following: http://niceq8i.tv/mobile/api/cat/get_sounds How to make the functions has a direct link like that and return the … -
Replied To a Post in Json webservice
[Here](http://msdn.microsoft.com/en-us/library/bb412178(v=vs.90).aspx)'s a start. -
Edited Json webservice
Dear all, I want to develop a webservice that returns a json like the following: http://niceq8i.tv/mobile/api/cat/get_sounds How to make the functions has a direct link like that and return the … -
Stopped Watching Cant Insert data with text more than 3 paragraph
i have table article 1. id_arc int (11) auto increament 2. judul varchar (225) 3. isi text 4. date datetime --ect i already create a script to input data and … -
Began Watching Cant Insert data with text more than 3 paragraph
i have table article 1. id_arc int (11) auto increament 2. judul varchar (225) 3. isi text 4. date datetime --ect i already create a script to input data and … -
Replied To a Post in Cant Insert data with text more than 3 paragraph
> am I right? No. You replied to my code snippet. You can see there that you should use `?` instead of the quoted variables above. -
Began Watching MySQLi binding example
The following snippet shows how you can use binding in your queries when using MySQLi. For starters, here's the table structure I've used: CREATE TABLE `mytable` ( `id` int(11) unsigned … -
Replied To a Post in MySQLi binding example
> Call to a member function bind_param() on a non-object That would mean your MySQLi object is not valid. Hard to say without your code. -
Began Watching Json webservice
Dear all, I want to develop a webservice that returns a json like the following: http://niceq8i.tv/mobile/api/cat/get_sounds How to make the functions has a direct link like that and return the … -
Replied To a Post in Json webservice
What server side language will you be using? -
Stopped Watching Secure PHP encryption?
Is there a secure PHP encryption on which NSA hasn't put or isn't able to put in future of 20 years it's hands on? -
Began Watching Secure PHP encryption?
Is there a secure PHP encryption on which NSA hasn't put or isn't able to put in future of 20 years it's hands on? -
Replied To a Post in Secure PHP encryption?
Perhaps [this](https://www.owasp.org/index.php/Guide_to_Cryptography) helps to determine what you need. -
Began Watching Phonegap versus Xamarin
We want to start mobile development (starting with Android). Our two most likely candidate tools at this time are Phonegap and Xamarin. I'd like to hear about any thoughts on … -
Stopped Watching Phonegap versus Xamarin
We want to start mobile development (starting with Android). Our two most likely candidate tools at this time are Phonegap and Xamarin. I'd like to hear about any thoughts on … -
Replied To a Post in Phonegap versus Xamarin
> great for small, simple applications Good enough. > not as easy as native Android applications I have no intention on writing native apps. > take the week or two …
The End.