Hello everyone and thanks for coming here to help out. My issue here is that I need to some how put this variable (I am not even exactly sure if this is a variable, because I don't know much at all about angularJS, and is why I want to have the variables in php) from angularJS into php. You can see after the skipped line, I tried to import it
<h3>Disk size per drive (Gigabytes) : <select ng-model="raidtype">
<option value="0">Raid 0</option>
<option value="1">Raid 1</option>
<option value="5">Raid 5</option>
</select></h3>
<h2>Find {{raidtype}} of {{disks}} at the size of {{size}}</h2>
<?php
echo "Importing into PHP...";
$raidtype = {{raidtype}};
echo $raidtype;
?>
This obviously doesn't work. I've tried other things, but they don't work. I'd also prefer if you could give me a solution that doesn't involve refreshing the page. Thanks!