• Member Avatar for pritaeas
    pritaeas

    Replied To a Post in how to add a custom text on any image ?

    Do you want to watermark an image file?
  • Member Avatar for pritaeas
    pritaeas

    Replied To a Post in Testing SSO using SAML requests on SoapUI

    Did you check SoapUI's forum?
  • Member Avatar for pritaeas
    pritaeas

    Gave Reputation to diafol in Ajaxed Linked Dropdowns (Select Fields) for Volatile Data

    **// EDIT 2014-04-07 //** New version (1.0.3) posted at the [bottom](http://www.daniweb.com/web-development/php/code/476623/ajaxed-linked-dropdowns-select-fields-for-volatile-data#post2082327) Demo Page: http://demos.diafol.org/ajax-linked-dropdowns.php *********************************************** Hello All. Been playing around with more linked dropdowns (select form fields), following the code …
  • Member Avatar for pritaeas
    pritaeas

    Gave Reputation to veedeoo in Part One: PHP MVC Framework , Understanding The Basics

    **Part One**: Learning the Basic Patterns **Disclaimer**: please pardon my spellogrammatico errors. I am not really a rough draft person. I type and write codes the split seconds as they …
  • Member Avatar for pritaeas
    pritaeas

    Replied To a Post in single mysql query to insert columns values from one table to another

    mysql_select_db($database_conn, $conn); $query_rpz = "insert into residents_payment (uid,rate) select uid, levy from residents"; $rpz = mysql_query($query_rpz, $conn) or die(mysql_error()); That's all...
  • Member Avatar for pritaeas
    pritaeas

    Replied To a Post in PHP - OOP can't query database

    The problem is that mysqli does not throw exceptions, PDO does. Looks like you mixed the two. Check the method result instead. Then you'll probably find out more.
  • Member Avatar for pritaeas
    pritaeas

    Edited Simple recursion unique raffle

    Raffle function to generate unique numbers for each player, related to the same table with a recursive aproach. I had to do a simple raffle system for a contest that …
  • Member Avatar for pritaeas
    pritaeas

    Replied To a Post in Introduction

    Click on the username link below their avatar...
  • Member Avatar for pritaeas
    pritaeas

    Replied To a Post in Avoid Direct Access to Application pages Bypassing Login Screen

    On each page you should check whether the user has already logged in. If not, redirect to the login screen.
  • Member Avatar for pritaeas
    pritaeas

    Replied To a Post in Introduction

    Welcome to DaniWeb.
  • Member Avatar for pritaeas
    pritaeas

    Replied To a Post in MSSQL

    What's the problem exactly?
  • Member Avatar for pritaeas
    pritaeas

    Replied To a Post in Penjelasan Program

    Please rephrase your question in English.
  • Member Avatar for pritaeas
    pritaeas

    Replied To a Post in Page Limit Error

    Fix line 21 and 38.
  • Member Avatar for pritaeas
    pritaeas

    Edited Hi i am Anjimile Mtila Oponyo

    Hi i am Anjimile Mtila Oponyo and feeling glad to join your community Anjimile Mtila Oponyo
  • Member Avatar for pritaeas
    pritaeas

    Replied To a Post in Hi i am Anjimile Mtila Oponyo

    Welcome to DaniWeb.
  • Member Avatar for pritaeas
    pritaeas

    Replied To a Post in My Introduction

    Welcome to DaniWeb.
  • Member Avatar for pritaeas
    pritaeas

    Replied To a Post in Trip through the US

    > And why isn't it? Most likely because the producing of batteries is not very environment friendly, and (semi)electric cars use more of them. My compact diesel car runs 20+ …
  • Member Avatar for pritaeas
    pritaeas

    Edited XML is not showing properly

    Dear All! I am facing a small issue in showing xml in a proper format. I am getting proper xml data from my webservice. but after receiving it browser is …
  • Member Avatar for pritaeas
    pritaeas

    Replied To a Post in New Member

    Welcome to DaniWeb.
  • Member Avatar for pritaeas
    pritaeas

    Replied To a Post in function call not working in wamp

    Add $result = ''; on line 28.
  • Member Avatar for pritaeas
    pritaeas

    Replied To a Post in sms gateway

    None are free. See [this thread](http://www.daniweb.com/web-development/php/threads/476168/learn-how-to-really-exploit-and-implement-an-sms-solution-to-your-website-i).
  • Member Avatar for pritaeas
    pritaeas

    Marked Solved Status for WinForms obsolete attribute on partial class

    I've got some winforms partial classes marked `[Obsolete]`. Unlike when applying this to methods, I get no warning after building. Is this because it's set on a partial class? I …
  • Member Avatar for pritaeas
    pritaeas

    Edited php error connection failed .. please help T-T

    I'm hosting my php file in WAMPSERVER PHP Version 5.4.3 and my database is somewhere in the uni server I keep getting this error and I don't know why * …
  • Member Avatar for pritaeas
    pritaeas

    Replied To a Post in Search Error

    I give up. The answer is in the previous posts.
  • Member Avatar for pritaeas
    pritaeas

    Replied To a Post in Push or Length

    var today = ["mon", "tue", "wed", "thu"]; var solid = today[today.length + 2] = "sun" document.write(today[4]); document.write(today[5]); document.write(today[6]); The array values 4 and 5 are both undefined. You told to …
  • Member Avatar for pritaeas
    pritaeas

    Replied To a Post in Search Error

    Check your form's input and use the right name for the GET variable.
  • Member Avatar for pritaeas
    pritaeas

    Replied To a Post in Search Error

    Add: $query = isset($_GET['query']) ? $_GET['query'] : ''; or: $query = isset($_GET['Editbox1']) ? $_GET['Editbox1'] : ''; Your form's input is defined strangely, so I cannot tell for sure.
  • Member Avatar for pritaeas
    pritaeas

    Marked Solved Status for Burned DVD will NOT play.

    Burned DVD will NOT play. Err. Msg: "Disc Error", Please eject the disc. Playback feature may not be available on this Disc. PLATFORM: Win7 Pro, XP Three different players external …
  • Member Avatar for pritaeas
    pritaeas

    Edited CPU problem not displaying on monitor due lightening

    I have a problem with my computers especially my two cpu. Some days ago they got struck by lightening. When i switch on the computers the cpu powers up normally …
  • Member Avatar for pritaeas
    pritaeas

    Replied To a Post in LINQ QUERIES

    Posted in error, or was there a question?
  • Member Avatar for pritaeas
    pritaeas

    Replied To a Post in Search Error

    Looks like `$query` never gets a value, so that the executed query returns everything.
  • Member Avatar for pritaeas
    pritaeas

    Replied To a Post in Trip through the US

    > I can drive my Prius 500+ miles between fillups Is that city drive over a period, or a single 500 mile stretch?
  • Member Avatar for pritaeas
    pritaeas

    Replied To a Post in Search Error

    Echo and show the exact query that's being executed.
  • Member Avatar for pritaeas
    pritaeas

    Replied To a Post in Search Error

    `$result` doesn't have a value, since you assigned the query result to `$sql`, so change `$sql` to `$result`
  • Member Avatar for pritaeas
    pritaeas

    Replied To a Post in Search Error

    Line 12 and 13 are conflicting (as I said before). You still have two mysql_query's where there should be a single one.
  • Member Avatar for pritaeas
    pritaeas

    Replied To a Post in form elements

    > can we write code for textbox change event or other events for form input in php No.
  • Member Avatar for pritaeas
    pritaeas

    Replied To a Post in Search Error

    Something fails, show the full code.
  • Member Avatar for pritaeas
    pritaeas

    Replied To a Post in Search Error

    Try this and tell us what it returns: $myQuery = "SELECT * FROM `company` WHERE `Type` LIKE '%$query%'"; $sql = mysql_query($myQuery) or die($myQuery . '<br/>' . mysql_error());
  • Member Avatar for pritaeas
    pritaeas

    Replied To a Post in Get last build date to display latest version date

    LastWriteTime shows the time when the assembly was written to disk, and that is the moment of updating. Perhaps `GetCreationTime`. Other than that, try [this](http://blog.codinghorror.com/determining-build-date-the-hard-way/)
  • Member Avatar for pritaeas
    pritaeas

    Replied To a Post in How to solve icon fonts with my own images?

    The path in your background-image is invalid. Replace the `(` with a `/`
  • Member Avatar for pritaeas
    pritaeas

    Replied To a Post in Push or Length

    > I use length-1 it removes the last item from the array, but at the same time adds an item to the array You are overwriting the contents of the …
  • Member Avatar for pritaeas
    pritaeas

    Replied To a Post in WinForms obsolete attribute on partial class

    Yeah, I know I should, but I doubt it's worth it in this case. Am hoping nobody is going to touch the code in the meantime. Just wanted confirmation, so …
  • Member Avatar for pritaeas
    pritaeas

    Replied To a Post in Archaic Email Validation Trivia

    http://ex-parrot.com/~pdw/Mail-RFC822-Address.html
  • Member Avatar for pritaeas
    pritaeas

    Edited My Introduction

    I am Tyler Hastings. I own many websites for my affiliate business and I earn quite well from those. But sometimes, I get on site’s hosting issues and hosting companies …
  • Member Avatar for pritaeas
    pritaeas

    Replied To a Post in Max from varchar column fails beyond 999

    If your column is a varchar, it's using a string comparison. When using a string comparison "9" > "1000". You should be using integers imo.
  • Member Avatar for pritaeas
    pritaeas

    Replied To a Post in Push or Length

    Ah, yes. By assigning "fri" to array[length] you are implicitly adding a new value to your array. This is fiddling with Javascript flaws imo.
  • Member Avatar for pritaeas
    pritaeas

    Edited difference in html and css

    what is the difference in html and css?
  • Member Avatar for pritaeas
    pritaeas

    Edited facebook on a mission

    facebook is buying every small tech companies, wonder what they up to?
  • Member Avatar for pritaeas
    pritaeas

    Replied To a Post in WinForms obsolete attribute on partial class

    Am I correct that `[Obsolete]` isn't working for `const` either?
  • Member Avatar for pritaeas
    pritaeas

    Replied To a Post in Code Editor

    Something like [this](http://ace.c9.io/)?

The End.