Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 4016594
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 20, 20262026-05-20T09:45:32+00:00 2026-05-20T09:45:32+00:00

I have created a new database table with the name ‘table’. Now i’m trying

  • 0

I have created a new database table with the name ‘table’. Now i’m trying the following code to write the data into the fields:

if (isset ($_POST['request'])) {

$F1 = $_POST['F1'];
$F2 = $_POST['F2'];
$F3 = $_POST['F3'];
$F4 = $_POST['F4'];

$sql_data_array = array('F1' => zen_db_prepare_input($_POST['F1']),
'F2' => zen_db_prepare_input($_POST['F2']));

zen_db_perform('table', $sql_data_array);

$db->Execute("insert into requests (F1, F2, F3, F4) values ('".$F1."', '"$F2."', '".$F3."', '".$F4. "')");
}

When i press the submit button i get blank page. It means something wrong with my code.
Where is the mistake? Please help me out.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-20T09:45:32+00:00Added an answer on May 20, 2026 at 9:45 am

    A couple of things:

    1. Don’t just take the posted values; do some cleanup on them to ensure you won’t get hacked.

      $F1 = zen_db_prepare_input(zen_sanitize_string($_POST['F1'])); 
      
    2. “table” is really not a great name for a table. It’s probably a reserved word, so you really want to call it (say) “fawad_table”.
      If you then do this:

      zen_db_perform('fawad_table', $sql_data_array);
      

      it will ONLY work if you don’t use a prefix in your configure.php file. If you do this will fail. The better thing is to create

      ./includes/extra_datafiles/special_tables.php
      

      which does something like

      define('TABLE_FAWAD', DB_PREFIX . 'fawad_table');
      

      then you can use

      zen_db_perform(TABLE_FAWAD, $sql_data_array);
      

    and it will work with or without a prefix.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have JDBC code which inserts into a database table by executing a PreparedStatement.
So. I have a table of data, in a MySQL database, eg: Artist Name
I have created a new solution with a minimal amount of code that represents
I have created a table in the database that has a System.Guid as it's
I have created a database and a table. I have also created all the
I have created one function whose purpose is to add data to database (I'm
I have written a code that searches specific string from database table.what i want
We have created a new List View Style that shows thumbnails from a picture
I m new to use ankhSVN and having issues. I have created some new
Does a new SessionFactor y and Session object have to be created for each

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.