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

  • SEARCH
  • Home
  • 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 8834395
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T09:00:12+00:00 2026-06-14T09:00:12+00:00

I have two files: index.php and cart.php In cart.php I have few three functions

  • 0

I have two files: index.php and cart.php

In cart.php I have few three functions – products_all(), products_shirts(), products_hoodies(). Those functions get info from my database and outputs it if called.

I want each of those functions to be called by clicking on hyperlinks and then to be outputed in a div tag, so that only the div tag is being refreshed not the whole site.

I read about jQuery/AJAX function load, but I can’t get it to work.

  • 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-06-14T09:00:14+00:00Added an answer on June 14, 2026 at 9:00 am

    If you don’t want the whole page to be refreshed, there is no way around using ajax.

    But it’s not that hard. When using a library like jQuery, you can do it in a few lines.

    Your HTNL + javscript code:

    <html>
    <head>
    <script src="http://code.jquery.com/jquery-latest.js"></script>
    <script>
    function callFunction(yourfunction)
    {
        $.post('cart.php', { "function": yourfunction }, function(data) {
            alert(data);
        });
    }
    
    $(document).ready(function()
    {
        $("#functionOne").on("click", function()
        {
            callFunction(1)
        });
    
        $("#functionTwo").on("click", function()
        {
            callFunction(2)
        });
    
    });
    </script>
    </head>
    <body>
        <a id="functionOne">function one</a>
        <a id="functionTwo">function two</a>
    </body>
    </html>
    

    And on the server side (cart.php) something like this:

    <?php
    if (isset($_POST['function']))
    {
        switch ($_POST['function'])
        {
            case 1:
                functionOne();
                break;
            case 2:
                functionTwo();
                break;
        }
    }
    
    function functionOne()
    {
        echo "hi, i am func1";
    }
    
    function functionTwo()
    {
        echo "hi, i am func2";
    }
    

    This should get you started!

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

Sidebar

Related Questions

I have two files. index.php and cart.php. All my functions, connection to database, etc.
I have two files 1 - index.php 2 - main.php index.php call to main.php
i have two files:(localhost/template/) index.php template.php each time when i create an article(an article
I have two files: index.php /lib/user.php Index contains the form: <div class=<? echo $msgclass;
So I have two files: index.php and query.php. The problem is, I don't know
I have two files php(index.php & data.php), the first send data to the second,
I have two files php (gettable.php and index.php) the index file display the result
I have a scenario where I have two files, one is index.php and the
In a folder named rewrite I have two files, .htaccess and index.php <rewrite> -
Basically, I have two files, in two different directories: index.php (in /login/) and index.php(in

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.