Tagged Questions
0
votes
1answer
68 views
C multiple files, segmentation fault printing an array
I have this code interaction with 2 files, but I am getting a segmentation error in these two functions and I need help figuring out why. fileA.c passes an int** to a function in fileB.c, the int** ...
0
votes
2answers
552 views
Uploading multiple files using formData()
var fd = new FormData();
fd.append("fileToUpload", document.getElementById('fileToUpload').files[0]);
var xhr = new XMLHttpRequest();
xhr.open("POST", "uph.php");
xhr.send(fd);
uph.php:
...
0
votes
1answer
278 views
Multiple file upload script with thumbnail creation not working, not getting errors
Script below is not working. Not getting any php error messages. Had asked a similar question, changed around thumbnail creation and if I had updated that question it would not have been seen at ...
1
vote
2answers
75 views
linking a map to a file with scala, to run a text based game
I'm taking a beginning programming class, and we're on to making text based games, more like read you're own adventures then actual games and I don't quite understand how to get the information form ...