• Member Avatar for Stefano Mtangoo
    Stefano Mtangoo

    Began Watching Connect html with USB Device

    Is it possible to connect USB device in the HTML page? If yes then How I can? I want to integrate Boogie Board into a dynamic page with a question.
  • Member Avatar for Stefano Mtangoo
    Stefano Mtangoo

    Replied To a Post in Connect html with USB Device

    Short Answer: NO. Long Answer: HTML is markup language and not programming language. Learn C/C++, Java, Python, C# et al to Program to USB. You need a desktop based programming …
  • Member Avatar for Stefano Mtangoo
    Stefano Mtangoo

    Began Watching Uploading Image as JSON

    Hi All, I am using php to create a Webservice API calls. I am checking all the service calls in Chrome's Postman and sending the data in JSON format. I …
  • Member Avatar for Stefano Mtangoo
    Stefano Mtangoo

    Replied To a Post in Uploading Image as JSON

    While this does not solve your question, compressing the base64 string might reduce errors caused by timeout of big files transfer. Note that because base64 is string then your problem …
  • Member Avatar for Stefano Mtangoo
    Stefano Mtangoo

    Began Watching How to use two models in a view?

    How to use two models in a view using Tuple and view model and what is there diffences?
  • Member Avatar for Stefano Mtangoo
    Stefano Mtangoo

    Replied To a Post in How to use two models in a view?

    Check out CP Article http://www.codeproject.com/Articles/687061/Multiple-Models-in-a-View-in-ASP-NET-MVC-MVC
  • Member Avatar for Stefano Mtangoo
    Stefano Mtangoo

    Marked Solved Status for Using Owin/Identity with Existing Database Fields Requirement

    I'm creating Frontend for an application with Established database (am rewriting to be explicit and so there are some things I cannot change. I was looking at Default Register/Login that …
  • Member Avatar for Stefano Mtangoo
    Stefano Mtangoo

    Replied To a Post in Using Owin/Identity with Existing Database Fields Requirement

    the links are great. My head is spinning at speed of light right now. I will make use of them later. For now I will mark it solved!
  • Member Avatar for Stefano Mtangoo
    Stefano Mtangoo

    Replied To a Post in Using Owin/Identity with Existing Database Fields Requirement

    Thanks Pritaeas, Its interesting that you removed OWIN and the Identity. What did you use then? I will visit the links and see what I can make out of them!
  • Member Avatar for Stefano Mtangoo
    Stefano Mtangoo

    Began Watching semding mail using php mail().

    Hi Everyone, i need urgent help from you.iam trying to send mail using php mail() functions.iam using XAMPP server.if i run above code iam getting "succesfuuly sent" message as a …
  • Member Avatar for Stefano Mtangoo
    Stefano Mtangoo

    Replied To a Post in semding mail using php mail().

    I would suggest you look at SwiftMailer (my fav) or PHPMailer to send mails. For all practical purposes I don't use PHP mail() Here's a sample from [Documetation](http://swiftmailer.org/docs/sending.html) require_once 'lib/swift_required.php'; …
  • Member Avatar for Stefano Mtangoo
    Stefano Mtangoo

    Began Watching MySQL/PHP

    I need help with creating a "user account" website (i.e. Facebook, Twitter, etc). I have a home page set up, i just need to have the it jump to the …
  • Member Avatar for Stefano Mtangoo
    Stefano Mtangoo

    Replied To a Post in MySQL/PHP

    Since you said nothing of what you have done so far nor did you tell us your level of expertise I will refer you to a tutorial http://www.w3schools.com/php/php_mysql_intro.asp
  • Member Avatar for Stefano Mtangoo
    Stefano Mtangoo

    Created Using Owin/Identity with Existing Database Fields Requirement

    I'm creating Frontend for an application with Established database (am rewriting to be explicit and so there are some things I cannot change. I was looking at Default Register/Login that …
  • Member Avatar for Stefano Mtangoo
    Stefano Mtangoo

    Began Watching Using Owin/Identity with Existing Database Fields Requirement

    I'm creating Frontend for an application with Established database (am rewriting to be explicit and so there are some things I cannot change. I was looking at Default Register/Login that …
  • Member Avatar for Stefano Mtangoo
    Stefano Mtangoo

    Began Watching Is possible to convert select drop down to table elements ?

    Hi guys, i want to populate a drop down list with ajax, and so when i select the first option thesecond one select must be populated in table like if …
  • Member Avatar for Stefano Mtangoo
    Stefano Mtangoo

    Replied To a Post in Is possible to convert select drop down to table elements ?

    This is JavaScript question You have to tie events to selection change then send Ajax request to get list of States fo example, for that country!
  • Member Avatar for Stefano Mtangoo
    Stefano Mtangoo

    Replied To a Post in Need help

    with my hint above modulo operation is unnecessary! :)
  • Member Avatar for Stefano Mtangoo
    Stefano Mtangoo

    Began Watching Need help

    I need to write a program like this Sample output: Please enter a number(Less than 8 digits): 1203021 There are 2 zero (0) in this number I dont know how …
  • Member Avatar for Stefano Mtangoo
    Stefano Mtangoo

    Replied To a Post in Need help

    The Code below shows how to iterate Strings. With Efforts you should be able to get what you want God bless you! #include <string> #include <iostream> int main() { int …
  • Member Avatar for Stefano Mtangoo
    Stefano Mtangoo

    Began Watching Help securing POST !

    Hello ! I have a problem ! I'm starting a comment system for my website. The problem is: I want to use an HTML editor, but is not fully necesary. …
  • Member Avatar for Stefano Mtangoo
    Stefano Mtangoo

    Replied To a Post in Help securing POST !

    couple of options 1. Limit number of tags and strip off the rest (then encode string in case some entities made its way) 2. Use HTML Purifier (google it) 3. …
  • Member Avatar for Stefano Mtangoo
    Stefano Mtangoo

    Began Watching Simulating a shopping cart

    I'm implementing something similar to a shopping cart - a "my favorites" page for products. Users can click on an "add to favorites" link and add products to a favorites …
  • Member Avatar for Stefano Mtangoo
    Stefano Mtangoo

    Replied To a Post in Simulating a shopping cart

    Emulating cart means: 1. Temporary store items 2. commit at checkout Which means 1. Store in session 2. commit in database Store them as asscociative arrays and use array's key …
  • Member Avatar for Stefano Mtangoo
    Stefano Mtangoo

    Began Watching Error: No base was selected

    <?php session_start(); mysql_connect("localhost","root",""); mysql_select_db("secure"); $name = $_POST['n']; $address = $_POST['x']; $order = "INSERT INTO user VALUES('$name','$address')"; if($result) { echo("Input data is succeed");} else { echo("Input data is fail");} ?> Error: …
  • Member Avatar for Stefano Mtangoo
    Stefano Mtangoo

    Replied To a Post in Error: No base was selected

    post whole stack trace here also I find your line `$order = "INSERT INTO user VALUES('$name','$address')";` not working in most cases so I always do `$order = "INSERT INTO user …
  • Member Avatar for Stefano Mtangoo
    Stefano Mtangoo

    Began Watching redirection

    how to redirect to a page in a specific folder... how to specify path...
  • Member Avatar for Stefano Mtangoo
    Stefano Mtangoo

    Replied To a Post in redirection

    http://php.net/manual/en/function.header.php
  • Member Avatar for Stefano Mtangoo
    Stefano Mtangoo

    Began Watching Email not being sent

    Dear all, I have done a website that I need to integrate emailing functionality. I have done this before, and it worked perfectly, and still does. However, when I attempted …
  • Member Avatar for Stefano Mtangoo
    Stefano Mtangoo

    Replied To a Post in Email not being sent

    you seem to use GMail SMTP but the code below uses your host machine (which am sure is not google's SMTP servers $mail->Host = "localhost"; So change it to google …
  • Member Avatar for Stefano Mtangoo
    Stefano Mtangoo

    Began Watching vector to structure formation in c++

    Guys, In below code after reading string values from vector , I can have output like("VarID","flag","count") for(int i=0; i < v.size(); i++){ cout<<v[i]<<endl; } All are (varID,flag and count)are string …
  • Member Avatar for Stefano Mtangoo
    Stefano Mtangoo

    Replied To a Post in vector to structure formation in c++

    please explain what you want. Your explanations are cryptic!

The End.