$wpdb->insert with wordpress shortcode











up vote
0
down vote

favorite












I need help about Wordpress shortcode with $wpdb->insert.
It works, but it run TWICE...



function f_registrazione()
{

$output = '';
if(!$_POST['txtNome'])
{
$output .= "do something in html";
} else {
$output .= "do something else in html";
}

global $wpdb;
$wpdb->insert( mg_nomi, array('des_nome' => $_POST['txtNome']) );
return $output;
}
add_shortcode( 'registrazione', 'f_registrazione' );


This function is written in a custom file linked to them's functions.php



What's wrong? Please help, I don't know how to fix this issue.



I've already tried different solutions, none working...



remove_action( 'wp_head', 'adjacent_posts_rel_link_wp_head', 10, 0 ); 

wp_reset_postdata();

wp_reset_query();


Thank you very much.










share|improve this question









New contributor




Matteo Gandini is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.




















  • Have you called the shortcode twice?
    – Mohammad Ashique Ali
    2 days ago










  • No, only once in one page...
    – Matteo Gandini
    yesterday










  • I've added echo $ wpdb-> insert_id; before return $output; it returns "1" in the top of the page, and "2" in the right place.
    – Matteo Gandini
    yesterday










  • where you are using this shortcode registrazione?
    – Vel
    yesterday










  • Oh, are you working online or on localhost? If online, can you share your URL to look into?
    – Mohammad Ashique Ali
    yesterday

















up vote
0
down vote

favorite












I need help about Wordpress shortcode with $wpdb->insert.
It works, but it run TWICE...



function f_registrazione()
{

$output = '';
if(!$_POST['txtNome'])
{
$output .= "do something in html";
} else {
$output .= "do something else in html";
}

global $wpdb;
$wpdb->insert( mg_nomi, array('des_nome' => $_POST['txtNome']) );
return $output;
}
add_shortcode( 'registrazione', 'f_registrazione' );


This function is written in a custom file linked to them's functions.php



What's wrong? Please help, I don't know how to fix this issue.



I've already tried different solutions, none working...



remove_action( 'wp_head', 'adjacent_posts_rel_link_wp_head', 10, 0 ); 

wp_reset_postdata();

wp_reset_query();


Thank you very much.










share|improve this question









New contributor




Matteo Gandini is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.




















  • Have you called the shortcode twice?
    – Mohammad Ashique Ali
    2 days ago










  • No, only once in one page...
    – Matteo Gandini
    yesterday










  • I've added echo $ wpdb-> insert_id; before return $output; it returns "1" in the top of the page, and "2" in the right place.
    – Matteo Gandini
    yesterday










  • where you are using this shortcode registrazione?
    – Vel
    yesterday










  • Oh, are you working online or on localhost? If online, can you share your URL to look into?
    – Mohammad Ashique Ali
    yesterday















up vote
0
down vote

favorite









up vote
0
down vote

favorite











I need help about Wordpress shortcode with $wpdb->insert.
It works, but it run TWICE...



function f_registrazione()
{

$output = '';
if(!$_POST['txtNome'])
{
$output .= "do something in html";
} else {
$output .= "do something else in html";
}

global $wpdb;
$wpdb->insert( mg_nomi, array('des_nome' => $_POST['txtNome']) );
return $output;
}
add_shortcode( 'registrazione', 'f_registrazione' );


This function is written in a custom file linked to them's functions.php



What's wrong? Please help, I don't know how to fix this issue.



I've already tried different solutions, none working...



remove_action( 'wp_head', 'adjacent_posts_rel_link_wp_head', 10, 0 ); 

wp_reset_postdata();

wp_reset_query();


Thank you very much.










share|improve this question









New contributor




Matteo Gandini is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.











I need help about Wordpress shortcode with $wpdb->insert.
It works, but it run TWICE...



function f_registrazione()
{

$output = '';
if(!$_POST['txtNome'])
{
$output .= "do something in html";
} else {
$output .= "do something else in html";
}

global $wpdb;
$wpdb->insert( mg_nomi, array('des_nome' => $_POST['txtNome']) );
return $output;
}
add_shortcode( 'registrazione', 'f_registrazione' );


This function is written in a custom file linked to them's functions.php



What's wrong? Please help, I don't know how to fix this issue.



I've already tried different solutions, none working...



remove_action( 'wp_head', 'adjacent_posts_rel_link_wp_head', 10, 0 ); 

wp_reset_postdata();

wp_reset_query();


Thank you very much.







wordpress custom-wordpress-pages






share|improve this question









New contributor




Matteo Gandini is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.











share|improve this question









New contributor




Matteo Gandini is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.









share|improve this question




share|improve this question








edited yesterday









Mohammad Ashique Ali

41628




41628






New contributor




Matteo Gandini is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.









asked 2 days ago









Matteo Gandini

11




11




New contributor




Matteo Gandini is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.





New contributor





Matteo Gandini is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.






Matteo Gandini is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.












  • Have you called the shortcode twice?
    – Mohammad Ashique Ali
    2 days ago










  • No, only once in one page...
    – Matteo Gandini
    yesterday










  • I've added echo $ wpdb-> insert_id; before return $output; it returns "1" in the top of the page, and "2" in the right place.
    – Matteo Gandini
    yesterday










  • where you are using this shortcode registrazione?
    – Vel
    yesterday










  • Oh, are you working online or on localhost? If online, can you share your URL to look into?
    – Mohammad Ashique Ali
    yesterday




















  • Have you called the shortcode twice?
    – Mohammad Ashique Ali
    2 days ago










  • No, only once in one page...
    – Matteo Gandini
    yesterday










  • I've added echo $ wpdb-> insert_id; before return $output; it returns "1" in the top of the page, and "2" in the right place.
    – Matteo Gandini
    yesterday










  • where you are using this shortcode registrazione?
    – Vel
    yesterday










  • Oh, are you working online or on localhost? If online, can you share your URL to look into?
    – Mohammad Ashique Ali
    yesterday


















Have you called the shortcode twice?
– Mohammad Ashique Ali
2 days ago




Have you called the shortcode twice?
– Mohammad Ashique Ali
2 days ago












No, only once in one page...
– Matteo Gandini
yesterday




No, only once in one page...
– Matteo Gandini
yesterday












I've added echo $ wpdb-> insert_id; before return $output; it returns "1" in the top of the page, and "2" in the right place.
– Matteo Gandini
yesterday




I've added echo $ wpdb-> insert_id; before return $output; it returns "1" in the top of the page, and "2" in the right place.
– Matteo Gandini
yesterday












where you are using this shortcode registrazione?
– Vel
yesterday




where you are using this shortcode registrazione?
– Vel
yesterday












Oh, are you working online or on localhost? If online, can you share your URL to look into?
– Mohammad Ashique Ali
yesterday






Oh, are you working online or on localhost? If online, can you share your URL to look into?
– Mohammad Ashique Ali
yesterday



















active

oldest

votes











Your Answer






StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");

StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});

function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});


}
});






Matteo Gandini is a new contributor. Be nice, and check out our Code of Conduct.










 

draft saved


draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53372535%2fwpdb-insert-with-wordpress-shortcode%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown






























active

oldest

votes













active

oldest

votes









active

oldest

votes






active

oldest

votes








Matteo Gandini is a new contributor. Be nice, and check out our Code of Conduct.










 

draft saved


draft discarded


















Matteo Gandini is a new contributor. Be nice, and check out our Code of Conduct.













Matteo Gandini is a new contributor. Be nice, and check out our Code of Conduct.












Matteo Gandini is a new contributor. Be nice, and check out our Code of Conduct.















 


draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53372535%2fwpdb-insert-with-wordpress-shortcode%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

Can a sorcerer learn a 5th-level spell early by creating spell slots using the Font of Magic feature?

ts Property 'filter' does not exist on type '{}'

mat-slide-toggle shouldn't change it's state when I click cancel in confirmation window