Recent content by Sumaya

  1. S

    How do I create and open a SQLite database in Windows?

    Thank u.. i did a lot of search about how to connect sqlite database with html ( dreamweaver 8 ) and found nothing clear .. any help , please ? Appreciate your help ..
  2. S

    How do I create and open a SQLite database in Windows?

    thank you all for helping me .. i did the steps and it worked .. I downloaded sqlite expert professional ... where can i find the tutorial or the explanation how to use it ? thank u all
  3. S

    How do I create and open a SQLite database in Windows?

    i did these steps and still can't create a database on windows vista http://www.gulfup.com/?xUhNzI here i wrote the path and the name of the path http://www.gulfup.com/?4x6KbD this one for dos command http://www.gulfup.com/?9PriK3 here i tried to create a database but it is not working...
  4. S

    How do I create and open a SQLite database in Windows?

    hi everyone , i downloaded SQLite files , i have in c:\windows\system32\sqlite 3 files: 1- sqlite.exe 2-sqlite.dll 3-sqlite.def my problem is that i can't create a database or open the one i created by the administrative tools .. as one of the website said that the way to create a...
  5. S

    My senior Project ( online website )

    thank u so much for replying ... i am learning now how to use sqlite.. i downloaded sqlite3.exe ans also administrative tools for it .. I am not familier with Python but i'll try to learn it from internet .. i really hope finish this project this semester and finally graduate .. thank u
  6. S

    My senior Project ( online website )

    hi , thank u for replying .. my website is online pizza order .. if the customer will order at first time what he needs to signup or if he was already signed up and write in a form his name , phone number , the location . then he choose from the menu what kind of pizza he wants and the quantity...
  7. S

    My senior Project ( online website )

    hi everyone , i doing online website for ordering pizza using dreamweaver (html) and i wonder when i create a form for the customer to select their food and write down there location .. so should all this information go to database ? is there a way that this information be sent to the supplier...
  8. S

    Why Isn't My PHP Comment System Saving Data to MySQL Database?

    i am making a comment system using dreamweaver and mysql , and the data i wrote it in the text area didnt not save in the mysql _db , below the index page contain the general fourm to let the user write comment and post_comment.php to send the data can you help me why the data didnt send...
  9. S

    Software product & socio-technical system

    Example of socio-technical system Hospital I don't know what is software product to give an example and software product is not Technical computer-based systems thanx for help
  10. S

    Fixing Error C2664 in Visual 2008 C++

    Homework Statement I am working in visual 2008 c++ ... The is an errors on error C2664: 'std::basic_istream<_Elem,_Traits> &std::basic_istream<_Elem,_Traits>::get(_Elem &)' : cannot convert parameter 1 from 'char [20]' to 'char &' Homework Equations The Attempt at a Solution...
  11. S

    Software product & socio-technical system

    Homework Statement What are the differences and similarities between a software product & socio-technical system? Homework Equations The Attempt at a Solution socio-technical system : Systems that include technical systems but also operational processes and people who use and interact with...
  12. S

    Comp Sci Understanding Newton's Method in C++

    Homework Statement why the loop not looping ? Homework Equations fun1=x^3+4^2-x-1 fun2=3x^2+8x-1 The Attempt at a Solution #include "stdafx.h" #include<iostream> using namespace std; float fun1(float); float fun2(float); void main() { float a; cin>>a; if (fun2(a)>0)...
  13. S

    Comp Sci Bisection Method for Finding Roots of x^3+4x^2-x-1 in C++

    Homework Statement find the roots ( interval halving ) , I want to know how to make a condition statement that when fun3 be less than 0.001 and then loop will stop and i get the root .(here in my code i don't know why the loop doesn't work as it should .. Homework Equations the...
Back
Top