Jump to content

gw1500se

Members
  • Posts

    1,037
  • Joined

  • Last visited

  • Days Won

    17

gw1500se last won the day on September 27 2024

gw1500se had the most liked content!

4 Followers

Profile Information

  • Location
    Georgia, USA

Contact Methods

  • Skype
    gw1500se

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

gw1500se's Achievements

Prolific Member

Prolific Member (5/5)

77

Reputation

3

Community Answers

  1. Use PHPMailer as it is much easier.
  2. I guess the first question is why are you adding and deleting tables? Those should be stable for the most part and from that just adding/deleting rows. The implication is that there is something wrong with your schema. Please explain you thinking on this.
  3. Not sure how you want it but you can use array_merge. $ingredients = ["sugar", "flour", "water"]; $spec_recipe = array_merge(["apple", "cinnamon"], $ingredients);
  4. Please edit your post and put your code using the code icon in the menu above (<>). It formats the the code properly making it easier to read and remove all the excess spaces.
  5. You also need to authorize any email addresses. You add that address to the contacts list on MailJet which will send an authorization email. You need to click on the link in that email to authorize it, then you should be good to go.
  6. Please use the code icon (<>) and select PHP for your code. It formats the code to make it easier to read.
  7. You need to use the MailJet API.
  8. $mSuccessMessage=mysql_query("Update_studentinfo(125, 'Shimla')");
  9. Do you have the following in your php.ini? extension=php_oci8.dll extension=php_oci8_11.g.dll
  10. This is really an HTML question. Have you tried using the <font> tag to format the output?
  11. Looks like PHP was built without --with-oci8 parameter. You can install it thus: pecl install oci8
  12. Please show your code and remember to use the code icon(<>) at the top. Also be sure to choose PHP as it will properly format your code.
  13. Look for an error in the httpd logs. This error in PHP, I think, is generic.
  14. A flat file database is the worst decision you can make for keeping records. For a whole host of reasons I won't bother to go into here. Databases such as MySQL are easy to set up and easy to use with PHP (easier than managing a flat file). The only time I've seen a requirement for a flat file database is for school homework.
  15. Probably the wrong approach. That information should be secured in a database. Google examples of PHP log in pages.
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.