Jump to content

gw1500se

Members
  • Posts

    1,041
  • 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)

78

Reputation

3

Community Answers

  1. The first thing I notice is that you have 2 session_start commands. I'm not sure that is the problem but remove the one in header.php.
  2. Use sprintf. You can convert the number to whatever format you want to enforce. $test3 = sprintf('%04d',$test3key);
  3. Sounds like an Ajax app to me.
  4. Javascript is client side code and does not interface with the server. I don't know why/where you got the information that it was dangerous for the server. If it calls a php program on the server the there may be a vulnerability but you can write your php code to assure no unauthorized access.
  5. Use PHPMailer as it is much easier.
  6. 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.
  7. Not sure how you want it but you can use array_merge. $ingredients = ["sugar", "flour", "water"]; $spec_recipe = array_merge(["apple", "cinnamon"], $ingredients);
  8. 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.
  9. 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.
  10. Please use the code icon (<>) and select PHP for your code. It formats the code to make it easier to read.
  11. You need to use the MailJet API.
  12. $mSuccessMessage=mysql_query("Update_studentinfo(125, 'Shimla')");
  13. Do you have the following in your php.ini? extension=php_oci8.dll extension=php_oci8_11.g.dll
  14. This is really an HTML question. Have you tried using the <font> tag to format the output?
  15. Looks like PHP was built without --with-oci8 parameter. You can install it thus: pecl install oci8
×
×
  • 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.