• Member Avatar for ryantroop
    ryantroop

    Replied To a Post in Problem with CSS

    based on the link you provided, and what I think you described, it looks like you have it working. What am I missing?
  • Member Avatar for ryantroop
    ryantroop

    Began Watching Problem with CSS

    I have a problem with CSS. Please for assistance. Yelim to me the picture is positioned at the center of the page and not the left or the right. I …
  • Member Avatar for ryantroop
    ryantroop

    Replied To a Post in PHP and mysql

    $start=date('Y-m-d',$cdate); echo "<td>".dateDifference($strat ,$row['ldate'],$differenceFormat = '%d' ) ."</td>"; You misspelled "start" as "strat"
  • Member Avatar for ryantroop
    ryantroop

    Replied To a Post in DECLARE and SELECT multiple variables in SQL Server

    You arent far off... however, you leave some interesting questions.. such as why use a decimal for a ClientNumber? Doesn't matter, though.. DECLARE @Template_Account decimal(10,0) = 8, @Field1 nvarchar(max), @Field2 …
  • Member Avatar for ryantroop
    ryantroop

    Began Watching DECLARE and SELECT multiple variables in SQL Server

    Hi all, I'm working on a SQL procedure to insert a row for new clients based on a template account that already exists in the database. I thought about Declaring …
  • Member Avatar for ryantroop
    ryantroop

    Replied To a Post in HELP HELP HELP!!!!!!!

    Ok.. what in particular do you need help with?
  • Member Avatar for ryantroop
    ryantroop

    Began Watching HELP HELP HELP!!!!!!!

    Create a “C program” that determines whether or not a person is qualified to vote. Test for the following criteria for voting: Ask for the users first and last name …
  • Member Avatar for ryantroop
    ryantroop

    Replied To a Post in Join SQL Databases from different servers

    Are they linked servers? SQL Server or MySQL? If linked, you can do as suggested here: http://stackoverflow.com/questions/1144051/selecting-data-from-two-different-servers-in-sql-server That link also gives examples on how to set them up, but it …
  • Member Avatar for ryantroop
    ryantroop

    Began Watching Join SQL Databases from different servers

    I am looking how to join two different tables from two different databases into one datagrid view. To make things more clear I am using two different connection strings to …
  • Member Avatar for ryantroop
    ryantroop

    Replied To a Post in How to clear some unwanted errors on Console

    Well... for one, you can not use 3rd party code that has errors. If that's not an option, you can look to ensure that you are implementing their code appropriately, …
  • Member Avatar for ryantroop
    ryantroop

    Began Watching How to clear some unwanted errors on Console

    i have a project that uses third party websites, urls and images and i am getting about 10.000 ERRORS on the console errors like: dmp.214...e1b7.js (γραμμή 3) SoundCloud Embed Player …
  • Member Avatar for ryantroop
    ryantroop

    Replied To a Post in PHP and mysql

    function dateDifference($date_1 , $date_2 , $differenceFormat = '%a' ) echo "<td>".dateDifference('edate','ldate',$differenceFormat = '%d' )."</td>"; Your function expects 2 dates as the first parameters. When you invoke the function, you are …
  • Member Avatar for ryantroop
    ryantroop

    Began Watching PHP and mysql

    Dear Friends, I created Table in PHP. Columns are SrNo. ---- Tender Detail----- Last Date----- Remaining Days ---------- Status(Pending/Proceded) I have Database in mysql. I get "last date" from database …
  • Member Avatar for ryantroop
    ryantroop

    Replied To a Post in Ajax is not getting data and starting the $_SESSION PHP/AJAX

    have you tried var_dump ($_GET)? Also, it seems you are only sending id_price, but your isset() looks for id_price and size_id, which means you need to add that along with …
  • Member Avatar for ryantroop
    ryantroop

    Replied To a Post in Ajax is not getting data and starting the $_SESSION PHP/AJAX

    Ok, what about adding the var_dumps on the variables?
  • Member Avatar for ryantroop
    ryantroop

    Replied To a Post in Sync local folder with FTP folder

    Heh.. you want to build a personal one drive? That's kinda neat.. I might try and figure that out, too...
  • Member Avatar for ryantroop
    ryantroop

    Began Watching Sync local folder with FTP folder

    I have a machine, I have a hosting with FTP. On my venture I found out about `lftp`. And the instructions are here: http://www.dangibbs.co.uk/journal/ftp-sync-usin-linux Snippet is this: open ftp://username:password@website.com mirror …
  • Member Avatar for ryantroop
    ryantroop

    Replied To a Post in Ajax is not getting data and starting the $_SESSION PHP/AJAX

    well... if you are using sessions, where is your session start? It should always be before headers are set. Other than that, you are simply replacing the one time super-global …
  • Member Avatar for ryantroop
    ryantroop

    Began Watching Ajax is not getting data and starting the $_SESSION PHP/AJAX

    I have two dropdowns where ajax gets the value from it and send to my page calculates.php and then i will get a result based on both dropdown selection. But …
  • Member Avatar for ryantroop
    ryantroop

    Replied To a Post in PHP options calculator type script

    Sounds like a job for javascript instead of php imo. However.. What seems to be your problem with this? Have you tried it yourself yet?
  • Member Avatar for ryantroop
    ryantroop

    Began Watching PHP options calculator type script

    Hi I'm trying to find a script that will allow me to set multiple options eg. option 1 = 40, option 2 = 15, option 3 = 30 etc where …
  • Member Avatar for ryantroop
    ryantroop

    Replied To a Post in IFrame Not Displaying

    So... aside from etiquette issues, has anyone considered that google may be actively blocking the use of their site inside a frame? Has any other site been able to load …
  • Member Avatar for ryantroop
    ryantroop

    Began Watching IFrame Not Displaying

    So I'm making an OS in javascript/html. I made the login screen (although it's as secure as a calculator, it looks quite nice). I made the Operating System Interface using …
  • Member Avatar for ryantroop
    ryantroop

    Replied To a Post in Captcha Implementation with Javascript

    Doing a pure client side (javascript only) captcha will not enhance security. Since all of your code would be visible to the client, even minified, someone could simply bypass it …
  • Member Avatar for ryantroop
    ryantroop

    Began Watching Captcha Implementation with Javascript

    Hi, I am a developer. I have been searching for best suited web development forums which provide helpful information on web development, so that I can get help from their …
  • Member Avatar for ryantroop
    ryantroop

    Replied To a Post in how do I submit many items into the database with out a huge insert

    No, correct syntax is $query = "INSERT INTO SURVEY (surveyid,q1,q2,q3) VALUES (?,?,?,?), (?,?,?,), (?,?,?,)";
  • Member Avatar for ryantroop
    ryantroop

    Replied To a Post in how do I submit many items into the database with out a huge insert

    @Atli, Your table design doesnt handle multiple answers per question well :-/ However, your point is valid and should probably be considered :)
  • Member Avatar for ryantroop
    ryantroop

    Replied To a Post in how do I submit many items into the database with out a huge insert

    SQL server 2008+ has the same syntax, and same solutions otherwise. Batch it, or make a stored proc that takes a delimited string and makes the batch for you.
  • Member Avatar for ryantroop
    ryantroop

    Replied To a Post in how do I submit many items into the database with out a huge insert

    If you have an up to date version of mySQL you can have PHP write something like this: insert tableName (a, b) values (c,d), (e,f), (g,h) .... (y,z); http://dev.mysql.com/doc/refman/5.5/en/insert.html Alternatively, …
  • Member Avatar for ryantroop
    ryantroop

    Began Watching how do I submit many items into the database with out a huge insert

    currently I have a survey with 10 questions on a html/ php form. I use post data and then have a long insert statment. My code looks something like this. …
  • Member Avatar for ryantroop
    ryantroop

    Replied To a Post in soap

    are you sure you have the correct URL? Are you sure they exist?
  • Member Avatar for ryantroop
    ryantroop

    Began Watching soap

    This is my soap code try{ $client = new SoapClient( "https://www.tntexpress.com.au/webservices/booking.svc?Wsdl" , array('username' => "xxx",'password' => "yyy") ); $params = array( "SenderAccount" => 30017823, "SenderDetails" => "ROSEHILL 2142 NSW EAST", …
  • Member Avatar for ryantroop
    ryantroop

    Replied To a Post in PHP Mail header issue

    Im not sure why you are doing this, but "\" is an escape delimiter in PHP - so if you type \" it will treat the " as a string …
  • Member Avatar for ryantroop
    ryantroop

    Began Watching PHP Mail header issue

    I was trying to tweak some html headers due to change in content type and facing a weird issue When I execute the below code it doesn't gets email delivered …
  • Member Avatar for ryantroop
    ryantroop

    Replied To a Post in Carry Over Balance

    Well... it is not written the way I would personally do it... it looks like too much is being attempted because "it can be done" instead of taking a direct …
  • Member Avatar for ryantroop
    ryantroop

    Replied To a Post in Help with AJAX and fetching data from HTML dropdown

    ?s= is a GET request, not a POST.
  • Member Avatar for ryantroop
    ryantroop

    Began Watching Help with AJAX and fetching data from HTML dropdown

    I'm trying to get the text value from a select dropdown menu that is populated by a database using the following function: <?php function searchintspokenlang() { require ('../../../connect_db.php'); $queryintspoken="SELECT Language …
  • Member Avatar for ryantroop
    ryantroop

    Replied To a Post in Carry Over Balance

    If that's the same calculation each time in that case statement, why not do it once as its own output, and use that value's alias in your case statement. You …
  • Member Avatar for ryantroop
    ryantroop

    Began Watching Carry Over Balance

    I have a query that get the balance for last month and current month balance. I'm using a function inside the view that took more than 30 minutes. May I …
  • Member Avatar for ryantroop
    ryantroop

    Replied To a Post in Css height issue

    When posting questions like this, it really does help to have a "live" demo page available. That said... A couple comments on what I do see... you have a "fixed" …
  • Member Avatar for ryantroop
    ryantroop

    Began Watching Css height issue

    Hello there I am currently just making a sample website to try and get back into the swing of things but I am encountering a problem with one of my …
  • Member Avatar for ryantroop
    ryantroop

    Replied To a Post in INNER JOIN Duplicate Result

    Well.. if you have a duplicate, what exactly makes them different from each other so they are atomic? If they are exact duplicates, then you will also have to MIN …
  • Member Avatar for ryantroop
    ryantroop

    Replied To a Post in INNER JOIN Duplicate Result

    Try including plateNo, Make, and Model into your group by. Im not sure how you would have multiple matching rows, but this may be your issue :-/
  • Member Avatar for ryantroop
    ryantroop

    Began Watching INNER JOIN Duplicate Result

    Hi! Having a hard time figuring out how to solve this problem at hand. basically i have several tables that are inter connected in some manners but i need to …
  • Member Avatar for ryantroop
    ryantroop

    Replied To a Post in Recent mySQL records

    To answer your question - yes, you would limit to only the last 10 posts with your query. You query would look something like this: select U.UserKey, M.MessageKey from User …
  • Member Avatar for ryantroop
    ryantroop

    Began Watching Recent mySQL records

    Hi all, Say I have a table called "posts" with thousands of records. For each user, I want to display the top 10 most recent posts. I would normally use: …
  • Member Avatar for ryantroop
    ryantroop

    Replied To a Post in Is 5MB of SQL to front-end result too much for browser?

    For the record, my suggestion was to make a stub html page that has a single script element that has your formatted data on the page already. Not really a …
  • Member Avatar for ryantroop
    ryantroop

    Began Watching Is 5MB of SQL to front-end result too much for browser?

    If user issues a query, I would like AJAX to download the result of query into browser so that JavaScript can do the parsing. The results could be around 1MB-5MB …
  • Member Avatar for ryantroop
    ryantroop

    Replied To a Post in Is 5MB of SQL to front-end result too much for browser?

    On a "modern" machine, probably not. You will have a longer delay simply downloading the data. However, if this is the path you plan on taking, I would let PHP …
  • Member Avatar for ryantroop
    ryantroop

    Began Watching Put two divs next to one another, without float and flexbox

    My first problem was. "I have this box, I need this box to be 230px, and I have second box, that needs to take entire space remaining". My solution to …

The End.