How to send post request to a url with data?

|
FreakOvj 2021-01-29 16:48:47
can you explain it in more details.. i am not familiar to this
FreakOvj 2021-01-29 16:48:58
please
shohost 2021-01-29 16:51:14
add ip and url in A record
shohost 2021-01-29 16:51:29
with is available in zone editor in cpanel
2021-01-29 16:51:33
FreakOvj 2021-01-29 16:44:57
yes i know that.. but i dont want to login again for that website

You cannot get any other website login details by just showing in an iframe

2021-01-29 16:51:59
2021-01-29 16:51:33
You cannot get any other website login details by just showing in an iframe

And it’s not possible to get any website login credentials by showing it in iframe

2021-01-29 16:52:37
FreakOvj 2021-01-29 16:42:37
hello is there any way to use others website in my website. and the login credential would be also same

You can use curl

FreakOvj 2021-01-29 16:53:44
2021-01-29 16:51:33
You cannot get any other website login details by just showing in an iframe

yes i got your point.. i have a middleman website… and my students doesnt want to use 2 different logins..they just want to login to my site and get access of others website… is there any option for this?

2021-01-29 16:54:31
FreakOvj 2021-01-29 16:53:44
yes i got your point.. i have a middleman website… and my students doesnt want to use 2 different logins..they just want to login to my site and get access of others website… is there any option for this?

You can access another web by curl

2021-01-29 16:55:26
But you cannot save data like cookies in users device so that user will remain only login in only in your web
FreakOvj 2021-01-29 17:01:41
2021-01-29 16:55:26
But you cannot save data like cookies in users device so that user will remain only login in only in your web

yes i got your point.. i have a middleman website… and my students doesnt want to use 2 different logins..they just want to login to my site and get access of others website… is there any option for this?

FreakOvj 2021-01-29 17:01:58
sorry network issue
ayushi_raghuwanshi 2021-01-29 18:14:51
Anyone know how to move position of particular data based on some parameter to top position?
ayushi_raghuwanshi 2021-01-29 18:15:24
Like i want featured data to be on top
capturecoder 2021-01-29 20:44:31
check opt folder in computer
capturecoder 2021-01-29 20:44:55
and then you will find lamp inside it
kameshindore 2021-01-29 22:54:17
I can help u if u need any. Check httpd service, mysqld, and run php page once
kameshindore 2021-01-29 22:55:04
ayushi_raghuwanshi 2021-01-29 18:15:24
Like i want featured data to be on top

What type of data? Is it from database. ? Share more info

kameshindore 2021-01-29 22:56:29
FreakOvj 2021-01-29 16:42:37
hello is there any way to use others website in my website. and the login credential would be also same

Vijay api is the solution.

kameshindore 2021-01-29 22:57:23
S Sam 2021-01-29 08:40:06
How to do schedular task in codeigniter ?
I have file in controller and model and I need to send mail using the schedular task.

What is the os? Linux or windows

kameshindore 2021-01-29 22:59:30
kasimmk 2021-01-28 17:16:48
If I change cpanel I will lose mails data from Outlook?

Create email pst in outlook. Let me know if u still need help on this

AdityaEXP 2021-01-30 05:43:49
How to send post request to a url with data?
ayushi_raghuwanshi 2021-01-30 06:33:07
kameshindore 2021-01-29 22:55:04
What type of data? Is it from database. ? Share more info

Yes data is from coming from database

CZ12 2021-01-30 06:33:43
Okay
kameshindore 2021-01-30 06:42:44
ayushi_raghuwanshi 2021-01-30 06:33:07
Yes data is from coming from database

Ok. We can do it then. Show me ur query and which data u want on top

kasimmk 2021-01-30 08:03:06
kameshindore 2021-01-29 22:59:30
Create email pst in outlook. Let me know if u still need help on this

Thank you surya, I did backup in pst from Outlook and I will update accout setting then i will check check

M Sajid Imran 2021-01-30 08:57:50
How can make active menu….?
I m using header include file…in php..
karthipalani 2021-01-30 09:35:00
M Sajid Imran 2021-01-30 08:57:50
How can make active menu….?
I m using header include file…in php..

Try this:

eg: include header file in home, about, contact files

assume home.php

set variable above the header include file in home.php as $page = “home”;

now time to active nav link using class and some php conditions:

<a href=”home.php” class=”<?php if($page==”home”){ echo “active” ;} ?>” >Home</a>

<a href=”about.php” class=”<?php if($page==”about”){ echo “active” ;} ?>” >About</a>

<a href=”contact.php” class=”<?php if($page==”contact”){ echo “active” ;} ?>” >Contact</a>

capturecoder 2021-01-30 10:23:38
Please help me
ayushi_raghuwanshi 2021-01-30 10:41:11
kameshindore 2021-01-30 06:42:44
Ok. We can do it then. Show me ur query and which data u want on top

Wherever in data I put * or something else then that data should come on top

2021-01-30 10:43:10
ayushi_raghuwanshi 2021-01-30 10:41:11
Wherever in data I put * or something else then that data should come on top

If you are using mysql database then you can use its query to get data in descending or assending order

ayushi_raghuwanshi 2021-01-30 10:45:04
2021-01-30 10:43:10
If you are using mysql database then you can use its query to get data in descending or assending order

Ha I have already used but i want some data should come manually on top

2021-01-30 10:45:31
ayushi_raghuwanshi 2021-01-30 10:45:04
Ha I have already used but i want some data should come manually on top

On which basis

ayushi_raghuwanshi 2021-01-30 10:45:43
Any parameter
2021-01-30 10:46:18
ayushi_raghuwanshi 2021-01-30 10:45:43
Any parameter

Is you have any parameter for your data

|