• Member Avatar for pritaeas
    pritaeas

    Replied To a Post in Page doesn't get updated - ajax/php

    Post the relevant part of the generated HTML for the table.
  • Member Avatar for pritaeas
    pritaeas

    Replied To a Post in get content html website

    You cannot load the data that is being loaded through AJAX with cUrl.
  • Member Avatar for pritaeas
    pritaeas

    Replied To a Post in get content html website

    Show your code.
  • Member Avatar for pritaeas
    pritaeas

    Replied To a Post in Frameworks Vs No Frameworks

    If you want to learn how they work, I'd suggest starting small and work your way up, or choose the most likely one you will encounter. For that, see the …
  • Member Avatar for pritaeas
    pritaeas

    Replied To a Post in Write .ini values encrypted, then read it?

    > i need this a.s.a.p People here help you voluntarily, do not say you need it NOW, because they really don't care. They will help you when they have time …
  • Member Avatar for pritaeas
    pritaeas

    Replied To a Post in Frameworks Vs No Frameworks

    > can i create my own framework Sure you can. It's just a collection of reusable components and some default business logic. Start small and let it grow slowly. Think …
  • Member Avatar for pritaeas
    pritaeas

    Replied To a Post in Final Year Project Topic and Development

    > create that final year project idea generator Excellent project idea! (reminds me of [this](http://dack.com/web/bullshit.html)).
  • Member Avatar for pritaeas
    pritaeas

    Replied To a Post in MySQL insert problem

    > other than autoincreement column That's why I asked what you do with the data, perhaps even the PK is not necessary.
  • Member Avatar for pritaeas
    pritaeas

    Replied To a Post in Error too many loops

    Not here (Opera).
  • Member Avatar for pritaeas
    pritaeas

    Replied To a Post in New Section

    Why don't you edit/update your career profile, and add a signature to your profile, stating "available for work". Although I could see a use for an "available for hire" option/list/thingamadoodle.
  • Member Avatar for pritaeas
    pritaeas

    Replied To a Post in check if username and ticket exist

    That's your code, I meant the generated query (in `$sql`). If affected rows retuns zero, then it means that the SELECT part of your query does not return any results. …
  • Member Avatar for pritaeas
    pritaeas

    Replied To a Post in how to show 20 random results out of 80 questions

    No. You fill the session array only when the first question is requested. So even if the session exists, returning to question one will generate a new set.
  • Member Avatar for pritaeas
    pritaeas

    Replied To a Post in how to show 20 random results out of 80 questions

    http://php.net/manual/en/book.session.php Basicaly use `session_start();` and then fill `$_SESSION['questions']` with your 20 random questions.
  • Member Avatar for pritaeas
    pritaeas

    Replied To a Post in PHP Catchable fatal error: Object of class CS_REST_Wrapper_Result could no

    `$cm_msg` is only a string in case of an error. When successful you get an object, so in that case you cannot use `. $cm_msg`
  • Member Avatar for pritaeas
    pritaeas

    Replied To a Post in Styling Echo in php

    That's too vague. Show a complete working example (preferably online) and describe what you want, and what's not working.
  • Member Avatar for pritaeas
    pritaeas

    Replied To a Post in need help with c# screen scrape

    What's the error, still the same? What kind of application or you building? Try `HttpClient` and see if that works.
  • Member Avatar for pritaeas
    pritaeas

    Replied To a Post in PHP Catchable fatal error: Object of class CS_REST_Wrapper_Result could no

    What line is the error on? One of the functions is returning an object, yet you are trying to use it as a string.
  • Member Avatar for pritaeas
    pritaeas

    Replied To a Post in check if username and ticket exist

    Then post the entire current query again.
  • Member Avatar for pritaeas
    pritaeas

    Replied To a Post in Styling Echo in php

    You can by adding `style` but using a `class` would be nicer, so you can then address any styling via CSS. You can also just use CSS on the `a` …
  • Member Avatar for pritaeas
    pritaeas

    Replied To a Post in how to show 20 random results out of 80 questions

    You send `question=1` to your script. That is an indication that you should select your 20 random questions (which your query does). You should only do that if you are …
  • Member Avatar for pritaeas
    pritaeas

    Replied To a Post in MySQL insert problem

    Am not sure what you do with your records after inserting, but if you need speed, make sure you remove any foreign keys or indexes. Check if you even need …
  • Member Avatar for pritaeas
    pritaeas

    Replied To a Post in how to show 20 random results out of 80 questions

    I don't see any code that does something with your mysql_query result, is this really all?
  • Member Avatar for pritaeas
    pritaeas

    Replied To a Post in Hi there

    Welcome to DaniWeb.
  • Member Avatar for pritaeas
    pritaeas

    Replied To a Post in Required and Optional fields in WebService

    > String was not recognized as a valid DateTime Can you show the Javascript code you are using to call this webservice?
  • Member Avatar for pritaeas
    pritaeas

    Replied To a Post in Retrieving values without duplicates

    Show the code you have for retrieving your items.
  • Member Avatar for pritaeas
    pritaeas

    Replied To a Post in Book

    An oldie on my bookshelf: Algorithms + Data Structures = Programs (Prentice-Hall Series in Automatic Computation) (1976) by Niklaus Wirth (Author)
  • Member Avatar for pritaeas
    pritaeas

    Replied To a Post in dynamically create and delete textboxes by button click and store in mysql

    Can you be more specific?
  • Member Avatar for pritaeas
    pritaeas

    Replied To a Post in getElementById

    Figured as much. The HTML does not get POSTed as a whole to your script, so there is no way to get what you want like that (unless you use …
  • Member Avatar for pritaeas
    pritaeas

    Replied To a Post in Echo certain value in multidimensional array

    Can't you specify to get another class returned? If you can you could write your own class to handle that logic for you (just wondering).
  • Member Avatar for pritaeas
    pritaeas

    Replied To a Post in hello

    Saving automatically requires Javascript. Is that what you want, saving when you leave a field?
  • Member Avatar for pritaeas
    pritaeas

    Replied To a Post in getElementById

    What do you mean "input from the form itself"? That can't work as you are loading the HTML from a file. I have a feeling you want to do something …
  • Member Avatar for pritaeas
    pritaeas

    Replied To a Post in MySQL insert problem

    What is the reason that you use DELETE/INSERT instead of UPDATE, are the rows that different?
  • Member Avatar for pritaeas
    pritaeas

    Replied To a Post in horizontal scretch

    Width auto uses the (inherited) width of the parent container. Use the DOM/debugger tools to find which parent has a specific width set.
  • Member Avatar for pritaeas
    pritaeas

    Replied To a Post in getElementById

    > When I call the nodeValue for the div it works but not for the input. What exactly does not work? The input with ID name does not have a …
  • Member Avatar for pritaeas
    pritaeas

    Replied To a Post in Database insert query not working

    See here how to check for errors: https://www.daniweb.com/web-development/php/code/434480/using-phpmysqli-with-error-checking
  • Member Avatar for pritaeas
    pritaeas

    Replied To a Post in Introduction

    Welcome to DaniWeb.
  • Member Avatar for pritaeas
    pritaeas

    Replied To a Post in new to pascal objects

    > I don't know what went wrong with the formatting of my reply above It's probably caused by code inside a bulleted list, IIRC a known issue.
  • Member Avatar for pritaeas
    pritaeas

    Replied To a Post in Database insert query not working

    > query is not working Last time. Post the failing query and the error message returned by mysql.
  • Member Avatar for pritaeas
    pritaeas

    Replied To a Post in Database insert query not working

    > changed but still not working Unhelpful. At least post the failing query, and the new error message.
  • Member Avatar for pritaeas
    pritaeas

    Replied To a Post in Database insert query not working

    `password` is a reserved word, use backticks.
  • Member Avatar for pritaeas
    pritaeas

    Replied To a Post in What makes a post qualify for down voting?

    Also, check this feedback forums, there are a ton of threads about it.
  • Member Avatar for pritaeas
    pritaeas

    Replied To a Post in check if username and ticket exist

    Username column in the where clause shouldn't have single quotes around it.
  • Member Avatar for pritaeas
    pritaeas

    Replied To a Post in Does anyone use Xamarin Framework?

    What code are you using? You might be trying to use something specific that Xamarin can't use cross-platform.
  • Member Avatar for pritaeas
    pritaeas

    Replied To a Post in Self - Introduction

    Welcome to DaniWeb.
  • Member Avatar for pritaeas
    pritaeas

    Replied To a Post in Building first MVC application

    > Hope you understand? I do, I misread apparently.
  • Member Avatar for pritaeas
    pritaeas

    Replied To a Post in Building first MVC application

    > you dont wanna be assigning allergies or operations to patients using their ids. Care to explain? Makes no sense to me.
  • Member Avatar for pritaeas
    pritaeas

    Replied To a Post in Building first MVC application

    > So, would it be OK to remove public virtual Patient patient { get; set; } from PatientWeight? Looks like that would be the problem, so yes I think it …
  • Member Avatar for pritaeas
    pritaeas

    Replied To a Post in Post inexplicably marked as let-me-google-that-for-you

    > Regardless, I've removed the tag. You could have too Are you sure? I can't. I can't just remove all tags and hit update, I have to enter at least …
  • Member Avatar for pritaeas
    pritaeas

    Edited how to insert string into mysql contains double backslash

    $str="james//bond"; $str= mysqli_real_escape_string($con,$str); //insert query after successful insert in database it value shows as "james/bond" how I can insert exact string
  • Member Avatar for pritaeas
    pritaeas

    Replied To a Post in Add login and password to Web Service

    Just add it to the ASMX file.

The End.