For fishing after with using user data?

|
2020-08-23 19:22:24
Hello guys I have #question how to learn php oop and laravel?
Please recomend video lessons(youtube)
2020-08-23 19:31:22
My SQL videos sir
2020-08-23 19:31:53
How to connect database my SQL php
jaideep_bishnoi 2020-08-23 20:06:58
2020-08-23 19:22:24
Hello guys I have #question how to learn php oop and laravel?
Please recomend video lessons(youtube)

laracast

Nrl. 2020-08-24 07:31:33
Hi. I need some help. I have try this code, but no result is appear (nothing happen)

SELECT year(dateRequest), COUNT(*) as number FROM gatepassstudent WHERE status = ‘OK’ and year(dateRequest) > (CURRENT_TIMESTAMP) – 5 GROUP BY year(dateRequest)

PatriotPatrice 2020-08-24 07:40:55
Guess instead of (CURRENT_TIMESTAMP) you want to have year(now())
Nrl. 2020-08-24 09:33:45
PatriotPatrice 2020-08-24 07:40:55
Guess instead of (CURRENT_TIMESTAMP) you want to have year(now())

Ok. Let me try first

Kemal raihan 2020-08-24 09:47:34
lol, good advice
JoeBornrich 2020-08-24 21:38:32
How to use JavaScript to validate a field in a form
JoeBornrich 2020-08-24 21:46:05
Define a PHP variable named $c that is a copy of object $b of the same class with the
same attribute values.
JoeBornrich 2020-08-24 21:46:14
Pls help
PatriotPatrice 2020-08-24 21:50:31
JoeBornrich 2020-08-24 21:38:32
How to use JavaScript to validate a field in a form

Get the value of each element of the form (give each element an id so you can easily access it) and check it’s value for validity inside a function that you call on submit of that form (prevent default event first), if all are valid, process with the submit by returning true, otherwise return false (and make some hints visible to tell which fields are invalid)

PatriotPatrice 2020-08-24 21:51:32
JoeBornrich 2020-08-24 21:46:05
Define a PHP variable named $c that is a copy of object $b of the same class with the
same attribute values.

<?php
$b = new stdClass();
$b->attribute1 = “value1”;
$b->attribute2 = “value2”;

$c = clone $b;

print_r($c);

PatriotPatrice 2020-08-24 21:54:15
PatriotPatrice 2020-08-24 21:51:32
<?php
$b = new stdClass();
$b->attribute1 = “value1”;
$b->attribute2 = “value2”;

$c = clone $b;

print_r($c);

<?php
// or this one with json_encode and json_decode if you are curious:

$b = new stdClass();
$b->attribute1 = “value1”;
$b->attribute2 = “value2”;

$c = json_decode(json_encode($b));

print_r($c);

echo “nn”;

JoeBornrich 2020-08-24 22:05:35
Design a form for users to input two numbers. Write PHP/JavaScript to calculate the addition of the input number and display the results.
JoeBornrich 2020-08-24 22:05:50
Please I need codes
PatriotPatrice 2020-08-24 22:06:54
I’m not going to do all of your homework 🙂
JoeBornrich 2020-08-24 22:10:08
Please I’ve done all but this ones
PatriotPatrice 2020-08-24 22:14:16
The task is unclear. Should the calculation be done in PHP or JavaScript or in both (two separated files?) or even via ajax call?
Shubbb 2020-08-24 22:23:41
JoeBornrich 2020-08-24 22:05:35
Design a form for users to input two numbers. Write PHP/JavaScript to calculate the addition of the input number and display the results.

<script>
calculate_sum(){
var first_value = document.getElementbyId(‘first_input’).value;

var second_value = document.getElementbyId(‘second_input’).value;

alert(parseFloat(first_value) + parseFloat (second_value))
}
</script>

Shubbb 2020-08-24 22:23:52
Write html code yourself
PatriotPatrice 2020-08-24 22:37:26
addition.php

<!DOCTYPE html>
<html>
<head>
<title>Addition</title>
<meta name=”author” content=”some German dude on Telegram”>
<script type=”text/javascript”>
function calc(event) {
event.preventDefault();
var a = parseInt(document.getElementsByName(“a”)[0].value);
var b = parseInt(document.getElementsByName(“b”)[0].value);
document.getElementById(“result”).value = a + b;
return true;
}
</script>
</head>

<body>
<?php
if(array_key_exists(“action”, $_REQUEST) && $_REQUEST[“action”] == “result”) {
$result = (int)$_REQUEST[“a”] + (int)$_REQUEST[“b”];
?>

<p>The addition of <?php echo (int)$_REQUEST[“a”]; ?> and <?php echo (int)$_REQUEST[“b”]; ?> equals <?php echo $result; ?></p>
<p><?php echo (int)$_REQUEST[“a”]; ?> + <?php echo (int)$_REQUEST[“b”]; ?> = <?php echo $result; ?></p>
<p><form><input type=”submit” value=”new input”></form>

<?php } else { ?>
<form method=”post”>
<input type=”hidden” name=”action” value=”result”>
<input type=”text” name=”a”> + <input type=”text” name=”b”> = <input type=”text” id=”result”><br /><br />
<input type=”submit” value=”calculate with PHP”>&nbsp;&nbsp;<button onclick=”calc(event)”>calculate with ECMAScript</button>
</form>
<?php } ?>

</body>
</html>

Amol 2020-08-25 06:59:10
Hello I want to create three user in my website for operation one user admin and super admin. super admin will have all permission to delete admin delete admin post and user only can view post all of in web how will be relationship and how can I achieve it using PHP mysql
Amol 2020-08-25 08:10:32
Anyone will tell me how can I do this please help me
2020-08-25 19:23:40
Sure
2020-08-25 19:23:40
Sure
2020-08-26 10:03:32
Amol 2020-08-25 08:10:32
Anyone will tell me how can I do this please help me

You create a database in the user table add a flag like super admin 1 and admin 2 and user 3 flag and flag wise condition table action button

Amol 2020-08-26 10:30:54
Ok
Kemal raihan 2020-08-26 11:51:52
Nice doc btw
2020-08-26 17:34:42
Hi
How to get screenshot on website using php or JavaScript

Plz any one tell me

bl4zza 2020-08-26 21:55:31
2020-08-26 17:34:42
Hi
How to get screenshot on website using php or JavaScript

Plz any one tell me

for fishing after with using user data? haha

Bangash 2020-08-26 23:04:51
2020-08-26 17:34:42
Hi
How to get screenshot on website using php or JavaScript

Plz any one tell me

async function startCapture(displayMediaOptions) { let captureStream = null; try { captureStream = await navigator.mediaDevices.getDisplayMedia(displayMediaOptions); } catch(err) { console.error(“Error: ” + err); } return captureStream; }

2020-08-27 14:24:19
i need fresh CC work on Yandex Money
DavidDehbs 2020-08-27 19:39:58
Someone help me
DavidDehbs 2020-08-27 19:42:46
how to add cdata in request soap
Divine24 2020-08-27 22:50:28
Pls guys my laraval set up refused to install
itechsoft 2020-08-28 02:05:42
Divine24 2020-08-27 22:50:28
Pls guys my laraval set up refused to install

What was the errors that you’re getting?

Private 2020-08-28 05:56:28
how to solve Header Can’t modify in creating zip
Private 2020-08-28 05:56:44
Private 2020-08-28 05:56:28
how to solve Header Can’t modify in creating zip

please help

Kemal raihan 2020-08-28 07:11:53
If I’m wrong, I’ll own it
ayushi_raghuwanshi 2020-08-28 08:12:30
Hello can anybody tell me how to implement search bar function in php
ayushi_raghuwanshi 2020-08-28 08:13:03
I want to search according to name and email
Jigar Jansari 2020-08-28 13:00:51
Any one help me
Jigar Jansari 2020-08-28 13:01:01
I have one session array
Jigar Jansari 2020-08-28 13:01:34
So am delete only one element from session
Jigar Jansari 2020-08-28 13:01:48
How??
Jigar Jansari 2020-08-28 13:02:01
Can i do
Jigar Jansari 2020-08-28 13:07:17
Cart type
Jigar Jansari 2020-08-28 13:07:24
Karna hai mereko
Disha 2020-08-28 13:11:13
Laravel in how to image are save in public folder
|