• Member Avatar for pritaeas
    pritaeas

    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 …
  • Member Avatar for pritaeas
    pritaeas

    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.
  • Member Avatar for pritaeas
    pritaeas

    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 …
  • Member Avatar for pritaeas
    pritaeas

    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 …
  • Member Avatar for pritaeas
    pritaeas

    Replied To a Post in Hi :-)

    Welcome.
  • Member Avatar for pritaeas
    pritaeas

    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 …
  • Member Avatar for pritaeas
    pritaeas

    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 …
  • Member Avatar for pritaeas
    pritaeas

    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.
  • Member Avatar for pritaeas
    pritaeas

    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 …
  • Member Avatar for pritaeas
    pritaeas

    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 …
  • Member Avatar for pritaeas
    pritaeas

    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 …
  • Member Avatar for pritaeas
    pritaeas

    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>تسجيل …
  • Member Avatar for pritaeas
    pritaeas

    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>تسجيل …
  • Member Avatar for pritaeas
    pritaeas

    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?
  • Member Avatar for pritaeas
    pritaeas

    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:_@/-
  • Member Avatar for pritaeas
    pritaeas

    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:_@/-
  • Member Avatar for pritaeas
    pritaeas

    Replied To a Post in regular expression

    Regular expressions are not for creating strings, but for parsing them.
  • Member Avatar for pritaeas
    pritaeas

    Stopped Watching flashplayer disaster

    PLEASE ! Can anyone recommend an alternative to Adobe Flashplayer
  • Member Avatar for pritaeas
    pritaeas

    Began Watching flashplayer disaster

    PLEASE ! Can anyone recommend an alternative to Adobe Flashplayer
  • Member Avatar for pritaeas
    pritaeas

    Replied To a Post in flashplayer disaster

    Silverlight.
  • Member Avatar for pritaeas
    pritaeas

    Edited flashplayer disaster

    PLEASE ! Can anyone recommend an alternative to Adobe Flashplayer
  • Member Avatar for pritaeas
    pritaeas

    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 …
  • Member Avatar for pritaeas
    pritaeas

    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 …
  • Member Avatar for pritaeas
    pritaeas

    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.
  • Member Avatar for pritaeas
    pritaeas

    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. …
  • Member Avatar for pritaeas
    pritaeas

    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. …
  • Member Avatar for pritaeas
    pritaeas

    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.
  • Member Avatar for pritaeas
    pritaeas

    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. …
  • Member Avatar for pritaeas
    pritaeas

    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. …
  • Member Avatar for pritaeas
    pritaeas

    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?
  • Member Avatar for pritaeas
    pritaeas

    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 …
  • Member Avatar for pritaeas
    pritaeas

    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 …
  • Member Avatar for pritaeas
    pritaeas

    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.
  • Member Avatar for pritaeas
    pritaeas

    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 …
  • Member Avatar for pritaeas
    pritaeas

    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 …
  • Member Avatar for pritaeas
    pritaeas

    Replied To a Post in Json webservice

    [Here](http://msdn.microsoft.com/en-us/library/bb412178(v=vs.90).aspx)'s a start.
  • Member Avatar for pritaeas
    pritaeas

    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 …
  • Member Avatar for pritaeas
    pritaeas

    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 …
  • Member Avatar for pritaeas
    pritaeas

    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 …
  • Member Avatar for pritaeas
    pritaeas

    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.
  • Member Avatar for pritaeas
    pritaeas

    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 …
  • Member Avatar for pritaeas
    pritaeas

    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.
  • Member Avatar for pritaeas
    pritaeas

    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 …
  • Member Avatar for pritaeas
    pritaeas

    Replied To a Post in Json webservice

    What server side language will you be using?
  • Member Avatar for pritaeas
    pritaeas

    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?
  • Member Avatar for pritaeas
    pritaeas

    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?
  • Member Avatar for pritaeas
    pritaeas

    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.
  • Member Avatar for pritaeas
    pritaeas

    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 …
  • Member Avatar for pritaeas
    pritaeas

    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 …
  • Member Avatar for pritaeas
    pritaeas

    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.