So how do i link my data entry in an existing data table?

|
2021-03-26 21:50:21
Rakesh Chatte 2021-03-26 19:43:06
I’m using predefined function but now I want to create my own algorithm

You can use strtr function in php to encrypt value with custom enc

In strtr function you can define what you want to change to what

LiveRichly 2021-03-26 22:08:14
2021-03-26 18:22:57
cant understand what you want to do..

Covert your json into array format try $result = json_decode($your_array);

LiveRichly 2021-03-26 22:08:32
Print_r($result);
quidarsarhan 2021-03-26 23:22:54
Marwa Ahmed 2021-03-26 14:53:29
Anybody egyptian here?

yes i am 🇪🇬
can i help?

Marwa Ahmed 2021-03-27 01:28:31
quidarsarhan 2021-03-26 23:22:54
yes i am 🇪🇬
can i help?

Yaa can i contact with u private because i want to ask somebidy in arabic?

quidarsarhan 2021-03-27 02:18:12
Marwa Ahmed 2021-03-27 01:28:31
Yaa can i contact with u private because i want to ask somebidy in arabic?

ok

2021-03-27 04:42:22
Mr Cool 2021-03-26 18:30:33
Guys i need an help im a beginner in Php ..

I have made login form .. !
In which data is saved like username and password..
So, now in another file display what i want is add in same table more data
Like Birth_date and gender
But this data im adding from popup box – modal from another file.

Yes I have plz text mi

2021-03-27 21:27:23
Anyone can easily put their own code in your code and can easily hack your complete server
2021-03-27 21:29:21
Don’t use eval function with users input.

And you can protect your self from this by just encrypting all user’s input

kishor10d 2021-03-27 21:29:58
Kepp the following Quote in mind:

If eval() is the answer, you’re almost certainly asking the
wrong question. — Rasmus Lerdorf, BDFL of PHP

The firsr comment in eval() docs on php[dot]net

Sirr_Alfred 2021-03-28 01:07:34
Good evening programmers…
I need some help

I need someone to help me with the following:

Database name: login_sample_db
Table name : users
Columns: id, student_id, fname, lname, user-nme, email, password

I need a code that will go into the DATABASE, fetch user’s data from a table named users and spit out only a logged in user name…

E.g Welcome John

And goes on to print his data from another table called results.

Sirr_Alfred 2021-03-28 01:07:53
Your help will be highly valued and appreciated
2021-03-28 07:36:16
Just replace all unusual characters to anything

Just keep +, -, * and% same and change other
Only accept integervalue

kishor10d 2021-03-28 07:46:38
I don’t even understand why you want to use eval desperately
Sirr_Alfred 2021-03-28 09:58:01
Good evening programmers…
I need some help

I need someone to help me with the following:

Database name: login_sample_db
Table name : users
Columns: id, student_id, fname, lname, user-nme, email, password

I need a code that will go into the DATABASE, fetch user’s data from a table named users and spit out only a logged in user name…

E.g Welcome John

And goes on to print his data from another table called results.

LiveRichly 2021-03-28 10:06:28
Sirr_Alfred 2021-03-28 09:58:01
Good evening programmers…
I need some help

I need someone to help me with the following:

Database name: login_sample_db
Table name : users
Columns: id, student_id, fname, lname, user-nme, email, password

I need a code that will go into the DATABASE, fetch user’s data from a table named users and spit out only a logged in user name…

E.g Welcome John

And goes on to print his data from another table called results.

When you load view before that send login user id to database and fetch the name of that user. Also send same id to another table and fetch the data using that id which you need to save in another table in front of login user as a user_id. And get all the results from that table against that user_id

sanitizerx 2021-03-28 12:48:19
Sirr_Alfred 2021-03-28 09:58:01
Good evening programmers…
I need some help

I need someone to help me with the following:

Database name: login_sample_db
Table name : users
Columns: id, student_id, fname, lname, user-nme, email, password

I need a code that will go into the DATABASE, fetch user’s data from a table named users and spit out only a logged in user name…

E.g Welcome John

And goes on to print his data from another table called results.

The idea is this, select everything from the table, then store what you need to be displayed in the page in asession , then you will call the session on the page..
for example,

$sql = “SELECT * from users where username = ‘”.$username.”‘ and password = ‘”.$password.”‘”;
$rs = mysqli_query($conn,$sql);
$getNumRows = mysqli_num_rows($rs);

if($getNumRows == 1)
{
$getUserRow = mysqli_fetch_assoc($rs);
unset($getUserRow[‘password’]);

$_SESSION = $getUserRow;
$_SESSION[‘firstname’]=$getUserRow[‘firstname’];

}

Ashwin_Bruno 2021-03-28 17:43:51
Select COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS
WHERE TABLE_SCHEMA = ‘yourdatabasename’ AND TABLE_NAME = ‘yourtablename’;
Nirmal Kumar 2021-03-28 17:45:08
I need image url extractor website
Tech_Nerd 2021-03-28 20:19:07
Mr Cool 2021-03-26 18:31:43
So how do i link my data entry in an existing data table ?

Rephrase this please

Katya Rubisoff 2021-03-29 03:35:23
sender*
Mukesh Verma 2021-03-29 19:31:46
Have anyone worked on roundcubemail
Mukesh Verma 2021-03-29 19:51:19
How we can change the page
Mukesh Verma 2021-03-29 19:51:43
In round cube can please help us
Mukesh Verma 2021-03-29 19:52:17
Or share any link so that we can found any guide
Mukesh Verma 2021-03-29 19:52:50
Can you help me
2021-03-29 19:53:09
Mukesh Verma 2021-03-29 19:51:19
How we can change the page

tell us exactly what you want to do

Mukesh Verma 2021-03-29 19:53:43
Actually I want to change the things like the pages
Mukesh Verma 2021-03-29 19:54:00
And wanted to add new page like for compose
Mukesh Verma 2021-03-29 19:54:44
I am not able to find the routes where the routes get called and the final page get loaded
Mukesh Verma 2021-03-29 19:56:09
I had already tried not able to get anything
Mukesh Verma 2021-03-29 19:56:20
Related to roundcube
sathishkumar1 2021-03-30 05:57:47
example[.]com/tech/how-create-telegram-sticker/download/download-2/

i want custom download post page (sub post) and the permalink structure continued from single post permalink.. i want function code for this.. anyone please help me..

2021-03-30 07:42:48
How to disable web page
Fellow_coder 2021-03-30 07:44:41
codeslide-28240.jpg
I got an error when I use this link
|